結果

問題 No.2392 二平方和
ユーザー hato336hato336
提出日時 2023-07-28 22:06:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 89,824 KB
最終ジャッジ日時 2024-10-06 18:58:57
合計ジャッジ時間 4,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
89,692 KB
testcase_01 AC 125 ms
89,272 KB
testcase_02 AC 122 ms
89,588 KB
testcase_03 AC 122 ms
89,592 KB
testcase_04 AC 122 ms
89,508 KB
testcase_05 AC 127 ms
89,488 KB
testcase_06 AC 125 ms
89,332 KB
testcase_07 AC 126 ms
89,548 KB
testcase_08 AC 124 ms
89,488 KB
testcase_09 AC 122 ms
89,604 KB
testcase_10 AC 119 ms
89,336 KB
testcase_11 AC 126 ms
89,400 KB
testcase_12 AC 127 ms
89,572 KB
testcase_13 AC 125 ms
89,824 KB
testcase_14 AC 119 ms
89,244 KB
testcase_15 AC 122 ms
89,284 KB
testcase_16 AC 125 ms
89,288 KB
testcase_17 AC 129 ms
89,556 KB
testcase_18 AC 127 ms
89,280 KB
testcase_19 AC 130 ms
89,472 KB
testcase_20 AC 127 ms
89,628 KB
testcase_21 AC 126 ms
89,616 KB
testcase_22 AC 125 ms
89,528 KB
testcase_23 AC 124 ms
89,608 KB
testcase_24 AC 123 ms
89,616 KB
testcase_25 AC 127 ms
89,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
#n,m = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
check = set()
for i in range(1,10**4+100):
    check.add(i**2)
for i in range(1,10**4+100):
    x = n - i**2
    if x in check:
        print('Yes')
        exit()
print('No')
0