結果

問題 No.2725 Coprime Game 2
ユーザー MasKoaTSMasKoaTS
提出日時 2023-09-29 10:34:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-07-26 15:14:51
合計ジャッジ時間 1,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,184 KB
testcase_01 AC 37 ms
52,460 KB
testcase_02 AC 38 ms
53,344 KB
testcase_03 AC 106 ms
77,948 KB
testcase_04 AC 135 ms
78,020 KB
testcase_05 AC 135 ms
77,952 KB
testcase_06 AC 113 ms
78,464 KB
testcase_07 AC 103 ms
77,440 KB
testcase_08 AC 129 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
input = sys.stdin.readline

query = [int(input()) for _ in [0] * int(input())]

def solve(n):
    for i in range(2, n):
        if(n % i == 0):
            continue
        if(gcd(n, i) != 1):
            break
        return 'K'
    return 'P'

for n in query:
    print(solve(n))
0