結果
問題 | No.2725 Coprime Game 2 |
ユーザー | nikoro256 |
提出日時 | 2024-04-13 00:11:02 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 321 ms / 2,000 ms |
コード長 | 236 bytes |
コンパイル時間 | 384 ms |
コンパイル使用メモリ | 82,500 KB |
実行使用メモリ | 76,800 KB |
最終ジャッジ日時 | 2024-10-02 23:52:22 |
合計ジャッジ時間 | 3,074 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,712 KB |
testcase_01 | AC | 40 ms
51,968 KB |
testcase_02 | AC | 40 ms
52,608 KB |
testcase_03 | AC | 290 ms
76,160 KB |
testcase_04 | AC | 321 ms
76,416 KB |
testcase_05 | AC | 314 ms
76,544 KB |
testcase_06 | AC | 313 ms
76,800 KB |
testcase_07 | AC | 235 ms
76,544 KB |
testcase_08 | AC | 299 ms
76,544 KB |
ソースコード
import math T=int(input()) for _ in range(T): N=int(input()) for i in range(1,N+1): if N%i==0: continue else: break if math.gcd(N,i)==1: print('K') else: print('P')