結果
問題 | No.2074 Product is Square ? |
ユーザー | とりゐ |
提出日時 | 2022-09-17 01:51:30 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 376 bytes |
コンパイル時間 | 254 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 88,132 KB |
最終ジャッジ日時 | 2024-06-01 14:47:54 |
合計ジャッジ時間 | 4,828 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
59,700 KB |
testcase_01 | AC | 93 ms
75,888 KB |
testcase_02 | AC | 86 ms
75,648 KB |
testcase_03 | AC | 93 ms
76,328 KB |
testcase_04 | AC | 86 ms
75,904 KB |
testcase_05 | AC | 91 ms
75,684 KB |
testcase_06 | AC | 89 ms
75,912 KB |
testcase_07 | AC | 87 ms
75,484 KB |
testcase_08 | AC | 87 ms
75,620 KB |
testcase_09 | AC | 88 ms
75,584 KB |
testcase_10 | AC | 87 ms
75,628 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 floor_sqrt(n): if n<0: return -1 ng,ok=n+1,-1 while ng-ok>1: mid=(ok+ng)//2 if mid*mid<=n: ok=mid else: ng=mid return ok def solve(): n=int(input()) a=list(map(int,input().split())) tmp=1 for i in a: tmp*=i s=floor_sqrt(tmp) if s*s==tmp: print('Yes') else: print('No') for _ in range(int(input())): solve()