結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | Chihaya_chan |
提出日時 | 2020-08-10 02:08:10 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 483 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 161,152 KB |
最終ジャッジ日時 | 2024-10-06 00:52:21 |
合計ジャッジ時間 | 11,928 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 388 ms
114,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
ソースコード
is_Prime = [True for i in range(5*10**6+1)] is_Prime[0] = is_Prime[1] = False for i in range(2, 5*10**6+1): if is_Prime[i] == False: continue for j in range(2, 5*10**6+1): if i*j > 5*10**6: break is_Prime[i*j] = False T = int(input()) que = [tuple(map(int, input().split())) for i in range(T)] for A, P in que: if is_Prime[A]: if A % P == 0: print(0) else: print(1) else: print(-1)