結果

問題 No.1140 EXPotentiaLLL!
ユーザー zkouzkou
提出日時 2020-07-31 21:44:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 382 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,068 KB
最終ジャッジ日時 2024-07-06 17:27:31
合計ジャッジ時間 32,138 ms
ジャッジサーバーID
(参考情報)
judge1 / 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,563 ms
46,500 KB
testcase_09 AC 1,596 ms
46,896 KB
testcase_10 AC 1,534 ms
46,736 KB
testcase_11 AC 1,531 ms
46,936 KB
testcase_12 AC 1,591 ms
46,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

input = sys.stdin.buffer.readline

table_len = 5000005
table = np.full(table_len, True)
table[0] = False
table[1] = False
for i in range(2, table_len):
    if table[i]:
        table[2*i::i] = False


T = int(input())
for _ in range(T):
    A, P = map(int, input().split())
    if table[P]:
        print(1 if A % P else 0)
    else:
        print(-1)
0