結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | toyuzuko |
提出日時 | 2020-08-09 12:20:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,959 ms / 2,000 ms |
コード長 | 506 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 50,048 KB |
最終ジャッジ日時 | 2024-10-04 08:53:55 |
合計ジャッジ時間 | 24,058 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,958 ms
50,048 KB |
testcase_01 | AC | 1,908 ms
50,048 KB |
testcase_02 | AC | 1,914 ms
49,920 KB |
testcase_03 | AC | 1,691 ms
49,920 KB |
testcase_04 | AC | 1,608 ms
49,920 KB |
testcase_05 | AC | 1,894 ms
50,048 KB |
testcase_06 | AC | 1,959 ms
50,048 KB |
testcase_07 | AC | 1,958 ms
50,048 KB |
testcase_08 | AC | 985 ms
49,792 KB |
testcase_09 | AC | 1,041 ms
49,792 KB |
testcase_10 | AC | 1,011 ms
49,792 KB |
testcase_11 | AC | 1,024 ms
49,792 KB |
testcase_12 | AC | 1,007 ms
49,792 KB |
ソースコード
import sys input = sys.stdin.readline def sieve(n): res = [True for _ in range(n + 1)] res[0] = False res[1] = False i = 2 while i * i <= n: if res[i]: for j in range(i * 2, n + 1, i): res[j] = False i += 1 return res T = int(input()) S = sieve(5 * 10**6) for _ in range(T): a, p = map(int, input().split()) if not S[p]: print(-1) else: if a % p == 0: print(0) else: print(1)