結果
問題 | No.2725 Coprime Game 2 |
ユーザー | PNJ |
提出日時 | 2024-04-12 22:53:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 289 ms / 2,000 ms |
コード長 | 350 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 82,636 KB |
実行使用メモリ | 76,928 KB |
最終ジャッジ日時 | 2024-10-02 23:39:45 |
合計ジャッジ時間 | 2,552 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 8 |
ソースコード
def gcd(a, b): while a != 0: b %= a if b == 0: return a a %= b return b T = int(input()) for _ in range(T): N = int(input()) if N == 2: print('P') continue if N % 2: print('K') continue for p in range(2,N+1): if N % p == 0: continue break if gcd(N,p) > 1: print('P') else: print('K')