結果

問題 No.2725 Coprime Game 2
ユーザー titiatitia
提出日時 2024-04-14 01:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,472 KB
最終ジャッジ日時 2024-10-03 00:23:34
合計ジャッジ時間 2,637 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 122 ms
76,420 KB
testcase_04 AC 412 ms
76,672 KB
testcase_05 AC 191 ms
77,004 KB
testcase_06 AC 184 ms
77,192 KB
testcase_07 AC 154 ms
77,056 KB
testcase_08 AC 193 ms
77,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from math import gcd

T=int(input())
for tests in range(T):
    N=int(input())

    OK=set()

    for i in range(2,N):
        if N%i!=0:
            OK.add(i)
        if gcd(i,N)==1:
            start=i
            break

    #print(start,OK)

    if N==2 or min(OK)!=start:
        print("P")
    else:
        print("K")

    
0