結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | uni_python |
提出日時 | 2020-08-03 20:44:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 784 bytes |
コンパイル時間 | 220 ms |
コンパイル使用メモリ | 81,592 KB |
実行使用メモリ | 116,464 KB |
最終ジャッジ日時 | 2024-09-13 15:40:40 |
合計ジャッジ時間 | 9,244 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 630 ms
115,996 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 309 ms
112,264 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 i in range(T): A,P=MI() if is_prime[P+1]==1: if A%P==0: print(0) else: print(1) else: print(-1) main()