結果
問題 | No.2074 Product is Square ? |
ユーザー | mkawa2 |
提出日時 | 2022-09-16 22:05:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,565 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 81,664 KB |
最終ジャッジ日時 | 2024-06-01 13:06:06 |
合計ジャッジ時間 | 17,313 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
67,968 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
import sys sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 md = 10**9+7 # md = 998244353 a_max = 1000000005 r = round(a_max**0.5) while r**2 < a_max: r += 1 isp, pp = [1]*(r+1), [] for a in range(2, r+1): if isp[a]: pp.append(a**2) for b in range(a+a, r+1, a): isp[b] = 0 def factors(a): ff = [1] for p in pp: if a == 1: break c = 0 if p**2 > a: p, a, c = a, 1, 1 else: while a%p == 0: c, a = c+1, a//p if c == 0: continue w, pf, ff = 1, ff, [] for _ in range(c): w *= p for f in pf: ff.append(f*w) ff += pf return ff def f(s): for p in pp: if p > s: break while s%p == 0: s //= p return s def solve(): n = II() aa = LI() s = 1 for a in aa: s *= a s = f(s) print("Yes" if s == 1 else "No") for _ in range(II()): solve()