結果

問題 No.2392 二平方和
ユーザー Alex WiceAlex Wice
提出日時 2023-07-28 21:37:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 57,984 KB
最終ジャッジ日時 2024-10-06 17:59:49
合計ジャッジ時間 2,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n):
    d = 2
    while d * d <= n:
        e = 0
        while n % d == 0:
            n //= d
            e += 1
        if d % 4 == 3 and e:
            if e % 2:
                return False
        d += 1 + (d & 1)
    return n % 4 != 3


print("Yes" if solve(int(input())) else "No")
0