• B. The Eternal Immortality


    B. The Eternal Immortality
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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.

    Examples
    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.

    题意看样例应该很明白了,现在要做的就是,怎么简化,其实只要比较各位就够了,如果两个数相差的数中

    有结尾为零的,就直接是零了,否则就个位数累乘。

     1 #include <iostream>
     2 #define ll long long int
     3 using namespace std;
     4 
     5 int main(){
     6   ll n,m;
     7   cin>>n>>m;
     8   int x=n%10;
     9   int y=m%10;
    10   if(m-n>=10){
    11     cout<<0<<endl;
    12   }else if(y<x){
    13     cout<<0<<endl;
    14   }else{
    15     int cnt=1;
    16     for(int i=x+1;i<=y;i++){
    17       cnt*=i;
    18       cnt=cnt%10;
    19     }
    20     cout<<cnt<<endl;
    21   }
    22   return 0;
    23 }
  • 相关阅读:
    ASP.NET 2.0 正式版中无刷新页面的开发
    Flex在线录制视频并回放(源码)
    url重写
    在Web应用程序中执行计划任务
    添加类别和修改类别(无限级别分类)
    用C#制作新闻阅读器
    字符串处理
    编程珠玑随笔
    实现元素的全排列
    提高代码质量的三要素
  • 原文地址:https://www.cnblogs.com/zllwxm123/p/7647768.html
Copyright © 2020-2023  润新知