結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 940 ms
190,256 KB
testcase_01 AC 754 ms
189,844 KB
testcase_02 WA -
testcase_03 AC 692 ms
170,524 KB
testcase_04 AC 643 ms
160,576 KB
testcase_05 AC 747 ms
186,384 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 428 ms
123,780 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 402 ms
123,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
S=sys.stdin.readlines()
T=int(S[0])
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,S[i+1].split())
  if PR[P]:
    print(1)
  else:
    print(-1)
0