結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-05 23:52:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 339 bytes |
| コンパイル時間 | 115 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 60,160 KB |
| 最終ジャッジ日時 | 2024-09-18 18:11:17 |
| 合計ジャッジ時間 | 7,358 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 1 |
| other | TLE * 1 -- * 11 |
ソースコード
import sys
input = sys.stdin.readline
MA = 5*10**6+1
s = [0]*(MA)
s[1] = 2
for i in range(2,MA):
for j in range(i,MA,i):
s[j] += 1
t = int(input())
for _ in range(t):
a,p = map(int,input().split())
if s[p] == 1:
if a%p:
print(1)
else:
print(0)
else:
print(-1)