結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | c-yan |
提出日時 | 2020-08-02 04:44:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 787 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 65,756 KB |
最終ジャッジ日時 | 2024-07-17 22:04:33 |
合計ジャッジ時間 | 19,558 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,534 ms
65,588 KB |
testcase_01 | AC | 1,452 ms
65,688 KB |
testcase_02 | AC | 1,588 ms
65,644 KB |
testcase_03 | AC | 1,412 ms
62,600 KB |
testcase_04 | AC | 1,254 ms
59,560 KB |
testcase_05 | AC | 1,542 ms
65,348 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1,566 ms
65,756 KB |
testcase_08 | AC | 809 ms
49,896 KB |
testcase_09 | AC | 843 ms
49,892 KB |
testcase_10 | AC | 775 ms
49,996 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
def make_prime_table(n): sieve = [True] * (n + 1) sieve[0] = -1 sieve[1] = -1 for i in range(4, n + 1, 2): sieve[i] = False for i in range(3, int(n ** 0.5) + 1, 2): if not sieve[i]: continue for j in range(i * i, n + 1, i): sieve[j] = False return sieve def main(): from builtins import int, map readline = open(0).readline prime_table = make_prime_table(5 * 10 ** 6) T = int(readline()) result = [] for _ in range(T): A, P = map(int, readline().split()) if not prime_table[P]: result.append(-1) else: if A % P == 0: result.append(0) else: result.append(1) print(*result, sep='\n') main()