結果
問題 | No.1022 Power Equation |
ユーザー | hedwig100 |
提出日時 | 2020-04-11 16:48:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 937 bytes |
コンパイル時間 | 1,388 ms |
コンパイル使用メモリ | 169,136 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 04:49:19 |
合計ジャッジ時間 | 1,913 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 6 ms
6,940 KB |
testcase_02 | AC | 7 ms
6,944 KB |
testcase_03 | AC | 7 ms
6,940 KB |
testcase_04 | AC | 6 ms
6,940 KB |
testcase_05 | AC | 6 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,944 KB |
testcase_07 | AC | 6 ms
6,940 KB |
testcase_08 | AC | 7 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for (int i = 0; i < (n); i ++) using namespace std; typedef long long ll; typedef pair<ll,ll> PL; typedef pair<int,int> P; const int INF = 1e9; const ll MOD = 1e9 + 7; const vector<int> dy = {-1,0,1,0}; const vector<int> dx = {0,1,0,-1}; ll root_int(ll a,int k) { if (k == 0) return 0; ll x = pow(a,(double)1.0/k); while (pow(x,k) > a) x --; while (pow(x + 1,k) <= a) x ++; return x; } int main() { ll t; cin >> t; rep(_,t) { ll n; cin >> n; ll ans = (n * n); for (int b = 1; b < 35;b ++) { for (int d = 1; d < 35; d ++) { if (__gcd(b,d) != 1) continue; int m = max(b,d); ll am = root_int(n,m); ll lim1 = max(am,1LL) - 1; ll lim2 = n/m; ans += (lim1 * lim2); } } cout << ans << endl; } return 0; }