結果

問題 No.2392 二平方和
ユーザー 👑 p-adicp-adic
提出日時 2023-03-14 23:24:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-09-18 08:35:46
合計ジャッジ時間 2,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,800 KB
testcase_01 AC 35 ms
52,992 KB
testcase_02 AC 35 ms
53,404 KB
testcase_03 AC 34 ms
52,428 KB
testcase_04 AC 34 ms
51,876 KB
testcase_05 AC 34 ms
51,632 KB
testcase_06 AC 35 ms
51,876 KB
testcase_07 AC 33 ms
53,312 KB
testcase_08 AC 34 ms
52,000 KB
testcase_09 AC 34 ms
52,212 KB
testcase_10 AC 34 ms
52,556 KB
testcase_11 AC 34 ms
52,204 KB
testcase_12 AC 35 ms
52,292 KB
testcase_13 AC 35 ms
51,668 KB
testcase_14 AC 33 ms
52,352 KB
testcase_15 AC 34 ms
52,440 KB
testcase_16 AC 34 ms
52,800 KB
testcase_17 AC 38 ms
51,964 KB
testcase_18 AC 37 ms
52,664 KB
testcase_19 AC 35 ms
51,796 KB
testcase_20 AC 134 ms
59,296 KB
testcase_21 AC 287 ms
59,796 KB
testcase_22 AC 209 ms
59,360 KB
testcase_23 AC 77 ms
59,692 KB
testcase_24 AC 311 ms
61,312 KB
testcase_25 AC 184 ms
60,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P=int(input())
r=2
while r*r<P:
	r+=1
for i in range(r):
	i2=i*i
	for j in range(r):
		if P==i2+j*j:
			print("Yes")
			exit(0)
print("No")
0