結果

問題 No.2074 Product is Square ?
ユーザー ecotteaecottea
提出日時 2022-09-16 22:50:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 583 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 85,264 KB
最終ジャッジ日時 2024-06-01 13:48:26
合計ジャッジ時間 5,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,876 KB
testcase_01 AC 186 ms
76,200 KB
testcase_02 AC 190 ms
75,904 KB
testcase_03 AC 200 ms
76,972 KB
testcase_04 AC 185 ms
76,284 KB
testcase_05 AC 185 ms
75,956 KB
testcase_06 AC 193 ms
75,900 KB
testcase_07 AC 186 ms
76,116 KB
testcase_08 AC 190 ms
76,096 KB
testcase_09 AC 185 ms
76,132 KB
testcase_10 AC 187 ms
76,008 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://sky-time-math.hatenablog.jp/entry/2020/09/08/153230
def intsqrt(n):
    dig=0
    while pow(10,2*dig) < n:
        dig+=1
    
    sq=0
    for k in reversed(range(0,dig+1)):
        for l in range(0,10):
            sq+=10**k
            if sq*sq==n:
                break
            if sq*sq>n:
                sq-=10**k
                break
    return sq

t = int(input())

for _ in range(t):
    n = int(input())
    a = list(map(int, input().split()))

    p = 1
    for v in a:
        p *= v
        
    rt = intsqrt(p)
    print("Yes" if rt * rt == p else "No")
0