2022年5月12日
摘要: 2600 二分+构造+图 阅读全文
posted @ 2022-05-12 16:26 Hamine 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 题目链接: https://acm.hdu.edu.cn/showproblem.php?pid=4389 题目大意: 给出一个函数 \(f\) int f ( int x ) { if ( x == 0 ) return 0; return f ( x / 10 ) + x % 10; } \(T 阅读全文
posted @ 2022-05-12 13:30 Hamine 阅读(51) 评论(0) 推荐(0) 编辑