結果

問題 No.2721 "Don't say N" Game
ユーザー Today03
提出日時 2024-04-12 21:52:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 193,840 KB
最終ジャッジ日時 2025-02-21 00:17:32
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include "./debug.cpp"
#else
#define debug(...)
#define print_line
#endif
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

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

    while (T--) {
        int N;
        cin >> N;

        int ans = 0;
        for (int i = 1; i <= N; i++) {
            if (N % i == 0) {
                ans++;
            }
        }

        if (ans % 2 == 0) {
            cout << "K" << endl;
        } else {
            cout << "P" << endl;
        }
    }
}
0