ACM训练
会飞的鱼f
这个作者很懒,什么都没留下…
展开
-
[HDU2212]DFS(digital factorial sum)(6.1每日一题)
题目链接Problem - 2212 (hdu.edu.cn)原创 2021-06-02 23:59:01 · 148 阅读 · 0 评论 -
[HDU2520]我是菜鸟,我怕谁(每日一题5.30)
题目链接:Problem - 2520 (hdu.edu.cn)乍一看zh原创 2021-06-01 16:02:31 · 111 阅读 · 0 评论 -
[HDU1067]Rightmost Digit(每日一题5.27)_待补充
#include <iostream>using namespace std;int main(){ int T; scanf("%d", &T); while(T--) { long long int n; scanf("%lld", &n); int rd = n % 10; int ans = rd; for(int i=1; i<n; i++).原创 2021-05-29 23:46:46 · 123 阅读 · 0 评论 -
[HDU2289]Cup_每日一题5_28
Problem - 2289 (hdu.edu.cn)原创 2021-05-29 22:28:13 · 138 阅读 · 1 评论 -
[每日一题5_18][HDU2097]Sky数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2097进制转换问题,用/和%来操作~以下是代码。#include <iostream>using namespace std;int main(){ int n; while(scanf("%d", &n) && n != 0) { int t = 0; int s10 = 0; ..原创 2021-05-18 19:59:28 · 151 阅读 · 4 评论