結果

問題 No.2725 Coprime Game 2
ユーザー ttkkggwwttkkggww
提出日時 2024-05-05 20:32:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 4,523 ms
コンパイル使用メモリ 261,704 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-05 20:32:32
合計ジャッジ時間 6,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 153 ms
6,944 KB
testcase_04 AC 165 ms
6,940 KB
testcase_05 AC 156 ms
6,944 KB
testcase_06 AC 149 ms
6,944 KB
testcase_07 AC 96 ms
6,944 KB
testcase_08 AC 142 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
ll N;

void solve(){
    if(N==2){
        cout<<"P"<<endl;
        return;
    }
    ll x;
    for(ll i = 2;;i++){
        if(N%i){
            x = i;
            break;
        }
    }
    if(gcd(N,x)!=1){
        cout<<"P"<<endl;
    }else{
        cout<<"K"<<endl;
    }
}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin >> T;
    while (T--) {
        cin >> N;
        solve();
    }
}
0