結果

問題 No.1140 EXPotentiaLLL!
ユーザー googol_S0googol_S0
提出日時 2020-08-01 00:18:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 87,272 KB
実行使用メモリ 125,016 KB
最終ジャッジ日時 2023-09-21 04:02:03
合計ジャッジ時間 17,256 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,551 ms
124,752 KB
testcase_01 AC 1,529 ms
124,808 KB
testcase_02 WA -
testcase_03 AC 1,332 ms
124,736 KB
testcase_04 AC 1,123 ms
124,740 KB
testcase_05 AC 1,552 ms
124,980 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 402 ms
123,588 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 396 ms
123,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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