1 条题解
-
1端木俁 (房佳坤) LV 8 @ 2021-11-21 20:50:09
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; long long sum = 0; int nn = n; while ( nn ) sum += pow(nn % 10, 3), nn /= 10; if ( sum == n ) puts("Yes"); else puts("No"); return 0; }
- 1
信息
- 难度
- 2
- 分类
- (无)
- 标签
- 递交数
- 40
- 已通过
- 20
- 通过率
- 50%
- 上传者