結果

問題 No.2722 Kenken Fight
ユーザー Today03Today03
提出日時 2024-04-12 21:59:17
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 198,516 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 23:17:37
合計ジャッジ時間 3,281 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

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--) {
        ll N;
        cin >> N;

        if (N == 1) {
            cout << "P" << '\n';
        } else {
            cout << "K" << '\n';
        }
    }
}
0