結果

問題 No.2721 "Don't say N" Game
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-06-15 11:54:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 175,012 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-15 11:54:20
合計ジャッジ時間 3,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)

map<int, int> prime_fact(int n){
    map<int, int> pf;
    for(int i = 2; i*i <= n; ++i){
        if(n % i != 0) continue;
        int cnt = 0;
        while(n % i == 0){
            cnt++;
            n /= i;
        }
        pf[i] = cnt;
    }
    if(n != 1) pf[n] = 1;
    return pf;
}

int num_divisor(int n){
    const auto pf = prime_fact(n);
    int res = 1;
    for(auto p : pf) res *= (p.second + 1);
    return res;
}

int main(){
    int T;
    cin >> T;

    rep(t, 0, T){
        int N;
        cin >> N;

        if(N == 1) cout << 'P' << endl;
        else if(num_divisor(N) % 2 == 0) cout << 'K' << endl;
        else cout << 'P' << endl;
    }

    return 0;
}
0