結果
問題 | No.2725 Coprime Game 2 |
ユーザー | MasKoaTS |
提出日時 | 2024-03-29 15:32:07 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 302 bytes |
コンパイル時間 | 374 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 77,640 KB |
最終ジャッジ日時 | 2024-09-30 15:03:14 |
合計ジャッジ時間 | 2,069 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,224 KB |
testcase_01 | AC | 34 ms
51,328 KB |
testcase_02 | AC | 34 ms
51,840 KB |
testcase_03 | AC | 94 ms
77,568 KB |
testcase_04 | AC | 133 ms
77,640 KB |
testcase_05 | AC | 130 ms
77,116 KB |
testcase_06 | AC | 119 ms
77,440 KB |
testcase_07 | AC | 100 ms
76,672 KB |
testcase_08 | AC | 120 ms
76,800 KB |
ソースコード
import sys from math import gcd input = sys.stdin.readline def solve(n): for i in range(2, n): if(n % i == 0): continue if(gcd(i, n) == 1): return 'K' break return 'P' t = int(input()) for _ in [0] * t: n = int(input()) print(solve(n))