結果

問題 No.2725 Coprime Game 2
ユーザー 👑 p-adicp-adic
提出日時 2023-10-04 18:18:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 77,560 KB
最終ジャッジ日時 2024-07-26 15:15:17
合計ジャッジ時間 2,785 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,804 KB
testcase_01 AC 34 ms
53,068 KB
testcase_02 AC 36 ms
53,012 KB
testcase_03 AC 263 ms
76,468 KB
testcase_04 AC 265 ms
77,028 KB
testcase_05 AC 292 ms
77,560 KB
testcase_06 AC 300 ms
76,712 KB
testcase_07 AC 208 ms
76,956 KB
testcase_08 AC 258 ms
76,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
P=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53]
for t in R(int(input())):
	N,i=int(input()),0
	while N%P[i]<1:i+=1
	b=N<3
	for j in R(2,P[i]):
		if N%j:b=1
	print("KP"[b])
0