結果

問題 No.2725 Coprime Game 2
ユーザー MasKoaTSMasKoaTS
提出日時 2023-03-02 18:48:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-07-26 15:14:48
合計ジャッジ時間 1,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 35 ms
52,600 KB
testcase_03 AC 99 ms
77,712 KB
testcase_04 AC 139 ms
77,952 KB
testcase_05 AC 132 ms
77,996 KB
testcase_06 AC 111 ms
78,036 KB
testcase_07 AC 102 ms
77,548 KB
testcase_08 AC 123 ms
78,336 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):
			return 'K'
		else:
			break
	return 'P'

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