結果
| 問題 |
No.2722 Kenken Fight
|
| コンテスト | |
| ユーザー |
Today03
|
| 提出日時 | 2024-04-12 21:59:17 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 195 ms / 2,000 ms |
| コード長 | 416 bytes |
| コンパイル時間 | 1,977 ms |
| コンパイル使用メモリ | 191,644 KB |
| 最終ジャッジ日時 | 2025-02-21 00:20:59 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 6 |
ソースコード
#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';
}
}
}
Today03