zoukankan      html  css  js  c++  java
  • Codeforces 869B

    Even if the world is full of counterfeits, I still regard it as wonderful.

    Pile up herbs and incense, and arise again from the flames and ashes of its predecessor — as is known to many, the phoenix does it like this.

    The phoenix has a rather long lifespan, and reincarnates itself once every a! years. Here a! denotes the factorial of integer a, that is, a! = 1 × 2 × ... × a. Specifically, 0! = 1.

    Koyomi doesn't care much about this, but before he gets into another mess with oddities, he is interested in the number of times the phoenix will reincarnate in a timespan of b! years, that is, . Note that when b ≥ a this value is always integer.

    As the answer can be quite large, it would be enough for Koyomi just to know the last digit of the answer in decimal representation. And you're here to provide Koyomi with this knowledge.

    Input
    The first and only line of input contains two space-separated integers a and b (0 ≤ a ≤ b ≤ 1018).

    Output
    Output one line containing a single decimal digit — the last digit of the value that interests Koyomi.

    Example
    Input
    2 4
    Output
    2
    Input
    0 10
    Output
    0
    Input
    107 109
    Output
    2
    Note
    In the first example, the last digit of is 2;

    In the second example, the last digit of is 0;

    In the third example, the last digit of is 2.

    题意:

    求b!/a!

    题解:

    直接搞!

    #include<iostream>
    #include<algorithm>
    using namespace std;
    int main()
    {
    	long long a,b;
    	while(cin>>a>>b)
    	{
    		if(a==b)
    			cout<<1<<endl;
    		else if(b>a+4)
    		{
    			cout<<0<<endl;
    		}
    		else
    		{
    			int ans=1;
    			for(long long i=a+1;i<=b;i++)
    			{
    				
    				ans=ans*(i%10)%10;
    			}
    			cout<<ans<<endl;
    		}
    	}
    	return 0;	
    }
  • 相关阅读:
    ZLL网关程序分析
    ZLL主机接口的信息处理流程
    TI Zigbee Light Link 参考设计
    基于能量收集的智能家居-2013国家级大学生创业实践项目申报_商业计划书_V0.2
    office excel 装Visual Studio后报错解决方案
    php随机生成验证码
    Mysql添加外键约束
    hdu 1232 畅通工程
    hdu 1162 Eddy's picture (Kruskal 算法)
    hdu 1102 Constructing Roads (Prim算法)
  • 原文地址:https://www.cnblogs.com/orion7/p/7662888.html
Copyright © 2011-2022 走看看