結果

問題 No.1140 EXPotentiaLLL!
ユーザー googol_S0googol_S0
提出日時 2020-08-01 00:17:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 235 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 86,972 KB
実行使用メモリ 84,944 KB
最終ジャッジ日時 2023-09-21 04:00:46
合計ジャッジ時間 4,194 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 99 ms
81,332 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 97 ms
81,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
A,P=0,0
PR=[1]*600000
PR[0]=0
PR[1]=0
for i in range(2,600000):
  if PR[i]:
    for j in range(i*2,600000,i):
      PR[j]=0
for i in range(T):
  A,P=map(int,input().split())
  if PR[P]:
    print(1)
  else:
    print(-1)
0