結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | c-yan |
提出日時 | 2020-08-02 00:10:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 649 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 222,720 KB |
最終ジャッジ日時 | 2024-07-08 11:51:17 |
合計ジャッジ時間 | 30,005 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 1,528 ms
206,552 KB |
testcase_09 | AC | 1,489 ms
206,720 KB |
testcase_10 | AC | 1,472 ms
206,628 KB |
testcase_11 | AC | 1,508 ms
206,532 KB |
testcase_12 | AC | 1,453 ms
206,720 KB |
ソースコード
def make_prime_table(n): sieve = list(range(n + 1)) sieve[0] = -1 sieve[1] = -1 for i in range(2, int(n ** 0.5) + 1): if sieve[i] != i: continue for j in range(i * i, n + 1, i): if sieve[j] == j: sieve[j] = i return sieve 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 prime_table[P] != P: result.append(-1) else: if A % P == 0: result.append(0) else: result.append(1) print(*result, sep='\n')