結果

問題 No.1140 EXPotentiaLLL!
ユーザー marroncastlemarroncastle
提出日時 2020-07-31 21:29:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 787 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 132,080 KB
最終ジャッジ日時 2024-07-06 16:28:38
合計ジャッジ時間 10,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 672 ms
131,072 KB
testcase_01 AC 667 ms
130,688 KB
testcase_02 WA -
testcase_03 AC 622 ms
128,416 KB
testcase_04 AC 576 ms
125,056 KB
testcase_05 AC 662 ms
132,080 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 374 ms
111,512 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 349 ms
111,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def sieve(n):
  is_prime = [True for _ in range(n+1)]
  is_prime[0] = False
  for i in range(2, n+1):
    if is_prime[i-1]:
      j = 2 * i
      while j <= n:
        is_prime[j-1] = False
        j += i
  return is_prime
def solve():
  input = sys.stdin.readline
  is_prime = sieve(5*10**6)
  T = int(input())
  ans = [-1]*T
  for i in range(T):
    A,P = map(int, input().split())
    if is_prime[P-1]:
      ans[i] = 1
  return ans
print(*solve(),sep='\n')
0