Advertisement
Dmaxiya

穿越时空之门 参考代码

Apr 2nd, 2025
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long LL;
  5. const int maxn = 100 + 100;
  6. int ans;
  7.  
  8. int cal(int x, int p) {
  9.     int ret = 0;
  10.     while (x != 0) {
  11.         ret += x % p;
  12.         x /= p;
  13.     }
  14.     return ret;
  15. }
  16.  
  17. int main() {
  18. #ifdef ExRoc
  19.     freopen("test.txt", "r", stdin);
  20. #endif // ExRoc
  21.     ios::sync_with_stdio(false);
  22.  
  23.     for (int i = 1; i <= 2024; ++i) {
  24.         if (cal(i, 2) == cal(i, 4)) {
  25.             ++ans;
  26.         }
  27.     }
  28.     cout << ans << endl;
  29.  
  30.     return 0;
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement