結果

問題 No.1022 Power Equation
ユーザー hedwig100hedwig100
提出日時 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,602 ms
コンパイル使用メモリ 169,100 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 08:34:59
合計ジャッジ時間 2,216 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 7 ms
4,348 KB
testcase_02 AC 7 ms
4,348 KB
testcase_03 AC 7 ms
4,348 KB
testcase_04 AC 7 ms
4,348 KB
testcase_05 AC 7 ms
4,348 KB
testcase_06 AC 7 ms
4,348 KB
testcase_07 AC 7 ms
4,348 KB
testcase_08 AC 7 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0