結果
| 問題 |
No.2721 "Don't say N" Game
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-12 21:23:27 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 14 ms / 2,000 ms |
| コード長 | 304 bytes |
| コンパイル時間 | 1,931 ms |
| コンパイル使用メモリ | 192,792 KB |
| 最終ジャッジ日時 | 2025-02-21 00:02:32 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 5 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
ll t;
cin>>t;
while(t--){
ll n;
cin>>n;
ll cnt=0;
for(ll i=1;i<n;i++){
if(n%i==0){
cnt++;
}
}
if(cnt%2==1){
cout<<'K'<<endl;
}else{
cout<<'P'<<endl;
}
}
}