摘要:
2600 二分+构造+图 阅读全文
摘要:
题目链接: 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 阅读全文