結果
問題 | No.2074 Product is Square ? |
ユーザー | k1suxu |
提出日時 | 2022-09-16 23:50:31 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 419 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 119,424 KB |
最終ジャッジ日時 | 2024-06-01 14:32:43 |
合計ジャッジ時間 | 4,952 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,600 KB |
testcase_01 | AC | 103 ms
76,156 KB |
testcase_02 | AC | 103 ms
75,940 KB |
testcase_03 | AC | 101 ms
75,904 KB |
testcase_04 | AC | 120 ms
77,312 KB |
testcase_05 | AC | 102 ms
75,988 KB |
testcase_06 | AC | 105 ms
76,160 KB |
testcase_07 | AC | 101 ms
75,864 KB |
testcase_08 | AC | 103 ms
76,080 KB |
testcase_09 | AC | 102 ms
75,876 KB |
testcase_10 | AC | 127 ms
77,632 KB |
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 | -- | - |
ソースコード
def is_square(apositiveint): x = apositiveint // 2 seen = set([x]) while x * x != apositiveint: x = (x + (apositiveint // x)) // 2 if x in seen: return False seen.add(x) return True t = int(input()) for i in range(t): n = int(input()) a = list(map(int, input().split())) mul = 1 for e in a: mul *= e if is_square(mul): print("Yes") else: print("No")