結果
| 問題 |
No.2721 "Don't say N" Game
|
| コンテスト | |
| ユーザー |
ripity
|
| 提出日時 | 2024-04-13 11:28:21 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 6 ms / 2,000 ms |
| コード長 | 265 bytes |
| コンパイル時間 | 2,369 ms |
| コンパイル使用メモリ | 193,572 KB |
| 最終ジャッジ日時 | 2025-02-21 00:58:04 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 5 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n;
cin >> n;
int cnt = 0;
for(int i = 1; i <= n; i++) {
cnt += (n%i == 0);
}
cout << (cnt%2 == 0 ? 'K' : 'P') << endl;
}
int main() {
int t;
cin >> t;
while(t--) { solve(); }
}
ripity