题意:已知a,b,求的最后一位。

分析:

1、若b-a>=5,则尾数一定为0,因为连续5个数的尾数要么同时包括一个5和一个偶数,要么包括一个0。

2、若b-a<5,直接暴力求即可。

#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cctype>
#include<cmath>
#include<iostream>
#include<sstream>
#include<iterator>
#include<algorithm>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<stack>
#include<deque>
#include<queue>
#include<list>
#define lowbit(x) (x & (-x))
const double eps = 1e-8;
inline int dcmp(double a, double b){
if(fabs(a - b) < eps) return 0;
return a > b ? 1 : -1;
}
typedef long long LL;
typedef unsigned long long ULL;
const int INT_INF = 0x3f3f3f3f;
const int INT_M_INF = 0x7f7f7f7f;
const LL LL_INF = 0x3f3f3f3f3f3f3f3f;
const LL LL_M_INF = 0x7f7f7f7f7f7f7f7f;
const int dr[] = {0, 0, -1, 1, -1, -1, 1, 1};
const int dc[] = {-1, 1, 0, 0, -1, 1, -1, 1};
const int MOD = 1e9 + 7;
const double pi = acos(-1.0);
const int MAXN = 2000 + 10;
const int MAXT = 10000 + 10;
using namespace std;
int main(){
LL a, b;
scanf("%lld%lld", &a, &b);
if(b - a >= 5){
printf("0\n");
}
else{
LL ans = 1;
for(LL i = a + 1; i <= b; ++i){
(ans *= (i % 10)) %= 10;
}
printf("%lld\n", ans);
}
return 0;
}

  

最新文章

  1. IOS基础学习-2: UIButton
  2. C#,java,C++ 等变量命名规则
  3. 利用flexbox实现按字符长度排列dom元素
  4. VC++ 之常见内存异常值
  5. iOS开发实用技巧—在手机浏览器头部弹出app应用下载提示
  6. POJ 2442 Sequence
  7. SSh结合Easyui实现Datagrid的分页显示
  8. Change An Item Property Using Set_Item_Property In Oracle Forms
  9. BCB6中SCALERICHVIEW加入GIF动画
  10. OpenJudge/Poj 1191 棋盘分割
  11. Python成长之路第二篇(1)_数据类型内置函数用法
  12. 据序和中序序列或者也许为了一个二进制序列,恢复二进制和打印图像(c语言)
  13. Docker(七):Docker容器卷管理
  14. gitlab勾住rocket chat
  15. Spring Boot 实现 RabbitMQ 延迟消费和延迟重试队列
  16. 腾讯内推一面C++
  17. [elk]bin/elasticsearch-sql-cli使用
  18. C和C指针小记(十三)-数组
  19. JavaScript中各种对象之间的关系
  20. uva216-枚举-简单题

热门文章

  1. vue 和 jquery混合使用
  2. ssh paramiko &amp;&amp; subprocess
  3. 【网摘】模仿 placeholder 属性
  4. ShellCode模板
  5. windows破解wifi小技巧
  6. CSP2019 滚粗记
  7. 下载安装charles并导入证书、使用
  8. selenium webdriver 常用方法
  9. 九 三种Struts2访问Servlet方式总结
  10. 外部IC寄存器的位定义