結果

問題 No.1140 EXPotentiaLLL!
ユーザー googol_S0googol_S0
提出日時 2020-08-01 00:25:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 86,916 KB
実行使用メモリ 264,048 KB
最終ジャッジ日時 2023-09-21 04:09:50
合計ジャッジ時間 13,678 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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] and A%P:
    print(1)
  elif PR[P]:
    print(0)
  else:
    print(-1)
print(PR)
0