結果
問題 | No.2724 Coprime Game 1 |
ユーザー | titia |
提出日時 | 2024-04-13 02:09:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 630 bytes |
コンパイル時間 | 373 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 100,224 KB |
最終ジャッジ日時 | 2024-10-02 23:55:36 |
合計ジャッジ時間 | 2,227 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 150 ms
84,608 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
import sys input = sys.stdin.readline x=3030300 Primelist=[i for i in range(x+1)] Primelist[1]=0 # 1は素数でないので0にする. for i in Primelist: if i*i>x: break if i==0: continue for j in range(2*i,x+1,i): Primelist[j]=0 for i in range(x+1): if Primelist[i]!=0: Primelist[i]=1 for i in range(1,x+1): Primelist[i]+=Primelist[i-1] T=int(input()) for tests in range(T): N=int(input()) if Primelist[N]!=0: print("P") continue ANS=N-1-(Primelist[N-1]-Primelist[N//2]) if ANS%2!=0: print("P") else: print("K")