結果

問題 No.2725 Coprime Game 2
ユーザー PNJPNJ
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 281 ms
76,124 KB
testcase_04 AC 289 ms
76,904 KB
testcase_05 AC 272 ms
76,928 KB
testcase_06 AC 266 ms
76,288 KB
testcase_07 AC 200 ms
76,892 KB
testcase_08 AC 276 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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')
0