結果

問題 No.3236 累乗数大好きbot
ユーザー The Forsaking
提出日時 2025-08-16 13:37:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 928 ms / 4,000 ms
コード長 1,065 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 195,136 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-08-16 13:38:16
合計ジャッジ時間 23,671 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef pair<int, int> pii;
typedef long long ll;
const int N = 2000086, MOD =  998244353, INF = 0x3f3f3f3f;
ll res;
int n, m, cnt, w[N];

int a[9][9], c[9];

inline ll qmi(ll a, ll b, ll c) { ll res = 1; while (b) { if (b & 1) res = res * a % c; a = a * a % c; b >>= 1; } return res; }
bool check(ll s, int t) {
    if (t == 1) return 1;
    if (t > 4) {
        for (int i = 1; ; i++) {
            ll g = qmi(i, t, 1e18);
            if (g > s) return 0;
            if (g == s) return 1;
        }
    }
    int l = 1, r = 1e6;
    if (t == 4) r = 1e3;
    else if (t == 3) r = 1e4;
    while (l < r) {
        int mid = l + r + 1 >> 1;
        ll g = qmi(mid, t, 1e18);
        if (g <= s) l = mid;
        else r = mid - 1;
    }
    return qmi(l, t, 1e18) == s;
}

int main() {
    int T;
    cin >> T;
    while (T--) {
        ll s;
        cin >> s;
        for (int i = 50; i; i--)
            if (check(s, i)) {
                printf("%d\n", i);
                break;
            }
    }
    return 0;
}
0