結果

問題 No.1140 EXPotentiaLLL!
ユーザー pluto77pluto77
提出日時 2020-10-06 10:06:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 116,088 KB
最終ジャッジ日時 2024-07-20 00:39:52
合計ジャッジ時間 13,920 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,271 ms
115,840 KB
testcase_01 AC 1,269 ms
115,696 KB
testcase_02 AC 1,302 ms
115,584 KB
testcase_03 AC 1,122 ms
115,584 KB
testcase_04 AC 913 ms
115,488 KB
testcase_05 AC 1,288 ms
115,200 KB
testcase_06 WA -
testcase_07 AC 1,308 ms
115,628 KB
testcase_08 AC 215 ms
112,896 KB
testcase_09 AC 218 ms
112,880 KB
testcase_10 AC 210 ms
112,584 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1140
prime=[1]*5000001
for i in range(2,5000001):
 if prime[i]:
  for j in range(i**2,5000001,i):
   prime[j]=0
x=int(input())
for i in range(x):
 a,p=map(int,input().split())
 if prime[p]:
  print(1 if a%p else 0)
 else:
  print(-1)
0