結果
問題 | No.2721 "Don't say N" Game |
ユーザー | miho-4 |
提出日時 | 2024-04-12 21:23:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 81 ms / 2,000 ms |
コード長 | 150 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 64,640 KB |
最終ジャッジ日時 | 2024-10-02 22:56:30 |
合計ジャッジ時間 | 1,009 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,840 KB |
testcase_01 | AC | 73 ms
64,000 KB |
testcase_02 | AC | 70 ms
64,512 KB |
testcase_03 | AC | 81 ms
64,640 KB |
testcase_04 | AC | 65 ms
63,360 KB |
testcase_05 | AC | 71 ms
64,256 KB |
ソースコード
Test=int(input()) for _ in range(Test): n=int(input()) cnt=0 for i in range(1,n): if n%i==0: cnt+=1 print("P" if cnt%2==0 else "K")