結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | koba-e964 |
提出日時 | 2021-09-18 11:32:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 505 ms / 2,000 ms |
コード長 | 559 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 116,236 KB |
最終ジャッジ日時 | 2024-06-30 08:45:11 |
合計ジャッジ時間 | 7,489 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 486 ms
116,224 KB |
testcase_01 | AC | 501 ms
115,456 KB |
testcase_02 | AC | 481 ms
116,236 KB |
testcase_03 | AC | 455 ms
115,072 KB |
testcase_04 | AC | 418 ms
114,944 KB |
testcase_05 | AC | 471 ms
115,584 KB |
testcase_06 | AC | 465 ms
115,712 KB |
testcase_07 | AC | 505 ms
116,096 KB |
testcase_08 | AC | 210 ms
97,152 KB |
testcase_09 | AC | 208 ms
97,664 KB |
testcase_10 | AC | 215 ms
97,664 KB |
testcase_11 | AC | 211 ms
97,536 KB |
testcase_12 | AC | 206 ms
97,152 KB |
ソースコード
#!/usr/bin/env python3 import sys import math readline = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) def eratosthenes(n): a = [True] * n a[0] = False a[1] = False for i in range(2, math.ceil(math.sqrt(n - 1))): if not a[i]: continue for j in range(2, (n - 1) // i + 1): a[i * j] = False return a t = int(readline()) pr = eratosthenes(5000001) for _ in range(t): a, p = map(int, readline().split()) if pr[p]: print(0 if a % p == 0 else 1) else: print(-1)