結果

問題 No.2725 Coprime Game 2
ユーザー GOTKAKOGOTKAKO
提出日時 2024-04-12 22:38:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 832 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 202,492 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-02 23:33:31
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int T; cin >> T;
    while(T--){
        long long N; cin >> N;
        if(N == 2){cout << "P" << endl; continue;}
        int first = -1,last = -1;
        for(int i=2; i<=N; i++){
            if(N%i == 0) continue;
            if(last == -1) last = i;
            int g = gcd(N,i);
            if(g != 1) continue;
            first = i; break;
        }
        if(last == first) cout << "K" << endl;
        else{
            int now = first*2,yes = 0;
            while(now <= N){
                int g = gcd(N,now);
                if(g == 1){yes = 1; break;} 
                now += first;
            }
            if(yes) cout << "K" << endl;
            else cout << "P" << endl;
        }
    }
}
0