結果

問題 No.2725 Coprime Game 2
ユーザー ゼットゼット
提出日時 2024-04-12 22:43:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 76,764 KB
最終ジャッジ日時 2024-10-02 23:35:57
合計ジャッジ時間 2,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,820 KB
testcase_01 AC 32 ms
53,616 KB
testcase_02 AC 33 ms
52,980 KB
testcase_03 AC 252 ms
75,864 KB
testcase_04 AC 288 ms
76,480 KB
testcase_05 AC 304 ms
76,620 KB
testcase_06 AC 279 ms
76,764 KB
testcase_07 AC 209 ms
76,652 KB
testcase_08 AC 255 ms
76,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
Q=int(input())
for _ in range(Q):
  N=int(input())
  if N==2:
    print('P')
    continue
  for x in range(2,N+1):
    if N%x!=0:
      z=x
      break
  if gcd(N,x)==1:
    print('K')
  else:
    print('P')
0