結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | uni_python |
提出日時 | 2020-08-03 21:08:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 466 ms |
コンパイル使用メモリ | 82,196 KB |
実行使用メモリ | 116,760 KB |
最終ジャッジ日時 | 2024-09-13 17:32:05 |
合計ジャッジ時間 | 9,548 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 648 ms
116,368 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 369 ms
111,360 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
import sys input=sys.stdin.readline def I(): return int(input()) def MI(): return map(int, input().split()) def LI(): return list(map(int, input().split())) def main(): mod=10**9+7 T=I() #nまでの素数を列挙(n loglogn) n = 5*(10**6)+10 #is_prime[i]にはi-1が素数か否かを示すboolが入る,[0]に1の素数判定がある. is_prime = [True]*(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 for _ in range(T): A,P=MI() if is_prime[P+1]: if A%P==0: print(0) else: print(1) else: print(-1) main()