結果
問題 | No.2074 Product is Square ? |
ユーザー | mkawa2 |
提出日時 | 2022-09-16 22:32:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,478 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 81,968 KB |
実行使用メモリ | 76,196 KB |
最終ジャッジ日時 | 2024-06-01 13:36:05 |
合計ジャッジ時間 | 3,400 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
60,740 KB |
testcase_01 | AC | 64 ms
72,324 KB |
testcase_02 | AC | 62 ms
72,500 KB |
testcase_03 | AC | 64 ms
72,264 KB |
testcase_04 | AC | 63 ms
71,528 KB |
testcase_05 | AC | 64 ms
71,988 KB |
testcase_06 | AC | 64 ms
72,124 KB |
testcase_07 | AC | 63 ms
73,508 KB |
testcase_08 | AC | 62 ms
73,300 KB |
testcase_09 | AC | 63 ms
73,328 KB |
testcase_10 | AC | 63 ms
71,896 KB |
testcase_11 | AC | 63 ms
72,196 KB |
testcase_12 | AC | 61 ms
71,188 KB |
testcase_13 | AC | 67 ms
74,236 KB |
testcase_14 | AC | 65 ms
70,776 KB |
testcase_15 | AC | 64 ms
70,792 KB |
testcase_16 | AC | 60 ms
69,140 KB |
testcase_17 | AC | 69 ms
76,120 KB |
testcase_18 | AC | 66 ms
72,400 KB |
testcase_19 | AC | 63 ms
72,660 KB |
testcase_20 | WA | - |
testcase_21 | AC | 63 ms
73,280 KB |
testcase_22 | WA | - |
testcase_23 | AC | 63 ms
72,788 KB |
testcase_24 | WA | - |
testcase_25 | AC | 69 ms
76,196 KB |
testcase_26 | AC | 61 ms
72,512 KB |
testcase_27 | AC | 61 ms
72,204 KB |
testcase_28 | AC | 60 ms
68,756 KB |
testcase_29 | AC | 67 ms
76,084 KB |
testcase_30 | AC | 62 ms
72,008 KB |
testcase_31 | AC | 50 ms
62,640 KB |
testcase_32 | AC | 45 ms
59,928 KB |
testcase_33 | AC | 62 ms
67,204 KB |
ソースコード
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 pp = [256, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293] pn = len(pp) rr = [] for p in pp: st = set() for a in range(p+5): st.add(a**2%p) rr.append(st) def solve(): def ok(): for i, s in enumerate(ss): if s not in rr[i]: return False return True n = II() aa = LI() ss = [1]*pn for a in aa: for i, m in enumerate(pp): ss[i] *= a ss[i] %= m print("Yes" if ok() else "No") for _ in range(II()): solve()