結果
問題 | No.2725 Coprime Game 2 |
ユーザー | yu_w(ゆ) |
提出日時 | 2024-04-12 23:23:56 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 341 ms / 2,000 ms |
コード長 | 352 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 76,852 KB |
最終ジャッジ日時 | 2024-10-02 23:50:09 |
合計ジャッジ時間 | 3,052 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,480 KB |
testcase_01 | AC | 38 ms
51,968 KB |
testcase_02 | AC | 39 ms
52,480 KB |
testcase_03 | AC | 289 ms
76,236 KB |
testcase_04 | AC | 321 ms
76,672 KB |
testcase_05 | AC | 341 ms
76,544 KB |
testcase_06 | AC | 338 ms
76,852 KB |
testcase_07 | AC | 241 ms
76,800 KB |
testcase_08 | AC | 295 ms
76,416 KB |
ソースコード
import math for _ in range(int(input())): N=int(input()) Ncopy = N LoseNum = 2 for i in range(2,min(N,1000)): isLosenum = True if N%i == 0: isLosenum = False if isLosenum: LoseNum = i break if math.gcd(Ncopy,LoseNum) != 1: print("P") else: print("K")