結果
問題 | No.1022 Power Equation |
ユーザー | betrue12 |
提出日時 | 2020-04-10 21:37:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 680 bytes |
コンパイル時間 | 2,007 ms |
コンパイル使用メモリ | 203,820 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 19:31:58 |
合計ジャッジ時間 | 2,595 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 6 ms
5,376 KB |
testcase_07 | AC | 6 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int64_t powint(int64_t N, int K){ int64_t res = 1; while(K--) res *= N; return res; } int main(){ int T; cin >> T; while(T--){ int64_t N; cin >> N; vector<int64_t> pwmax(31, 1); pwmax[1] = N; for(int i=2; i<=30; i++) while(powint(pwmax[i]+1, i) <= N) pwmax[i]++; int64_t ans = N*N; for(int i=1; i<=30; i++) for(int j=1; j<=30; j++){ if(gcd(i, j) > 1) continue; int m = max(i, j); int64_t res = pwmax[m]-1; res *= N/m; ans += res; } cout << ans << endl; } return 0; }