結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | Mine |
提出日時 | 2021-01-28 18:33:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 116,352 KB |
最終ジャッジ日時 | 2024-06-26 02:48:07 |
合計ジャッジ時間 | 16,672 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,479 ms
116,096 KB |
testcase_01 | AC | 1,533 ms
116,096 KB |
testcase_02 | AC | 1,474 ms
116,248 KB |
testcase_03 | AC | 1,274 ms
115,968 KB |
testcase_04 | AC | 1,091 ms
115,968 KB |
testcase_05 | AC | 1,461 ms
116,096 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1,519 ms
116,312 KB |
testcase_08 | AC | 353 ms
114,784 KB |
testcase_09 | AC | 353 ms
114,828 KB |
testcase_10 | AC | 351 ms
114,764 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
from collections import defaultdict def Sieve_of_Eratosthenes(maxA): lst = [-1]*(maxA+1) lst[0] = 0 lst[1] = 1 for i in range(2, maxA+1): if lst[i] == -1: for g in range(i, maxA+1, i): if lst[g] == -1: lst[g] = i return lst maxA = 5*10**6 + 1 lst = Sieve_of_Eratosthenes(maxA) t = int(input()) for _ in range(t): a, p = map(int, input().split()) if p == lst[p]: if a % p != 0: print(1) else: print(0) else: print(-1)