結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | zkou |
提出日時 | 2020-07-31 21:31:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 347 bytes |
コンパイル時間 | 289 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 116,448 KB |
最終ジャッジ日時 | 2024-07-06 16:35:23 |
合計ジャッジ時間 | 9,640 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 628 ms
116,096 KB |
testcase_01 | AC | 669 ms
115,840 KB |
testcase_02 | WA | - |
testcase_03 | AC | 573 ms
115,712 KB |
testcase_04 | AC | 549 ms
115,840 KB |
testcase_05 | AC | 604 ms
115,840 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 363 ms
113,152 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
import sys input = sys.stdin.buffer.readline table_len = 5000005 table = [True] * table_len for i in range(2, table_len): if table[i]: for j in range(2*i, table_len, i): table[j] = False T = int(input()) for _ in range(T): A, P = map(int, input().split()) if table[P]: print(1) else: print(-1)