結果

問題 No.2392 二平方和
ユーザー nouka1729nouka1729
提出日時 2023-10-27 11:35:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,212 KB
最終ジャッジ日時 2024-09-25 12:58:32
合計ジャッジ時間 6,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 383 ms
60,984 KB
testcase_01 AC 38 ms
52,752 KB
testcase_02 AC 383 ms
61,196 KB
testcase_03 AC 384 ms
60,500 KB
testcase_04 AC 41 ms
57,740 KB
testcase_05 AC 38 ms
52,476 KB
testcase_06 AC 384 ms
61,160 KB
testcase_07 AC 382 ms
60,812 KB
testcase_08 AC 41 ms
57,884 KB
testcase_09 AC 38 ms
51,816 KB
testcase_10 AC 39 ms
52,844 KB
testcase_11 AC 383 ms
60,800 KB
testcase_12 AC 42 ms
58,740 KB
testcase_13 AC 381 ms
60,076 KB
testcase_14 AC 43 ms
58,488 KB
testcase_15 AC 44 ms
59,364 KB
testcase_16 AC 38 ms
51,816 KB
testcase_17 AC 382 ms
60,512 KB
testcase_18 AC 43 ms
58,700 KB
testcase_19 AC 43 ms
59,384 KB
testcase_20 AC 161 ms
59,688 KB
testcase_21 AC 384 ms
60,116 KB
testcase_22 AC 267 ms
60,748 KB
testcase_23 AC 91 ms
60,440 KB
testcase_24 AC 382 ms
60,268 KB
testcase_25 AC 226 ms
61,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(1,10**4):
  for j in range(1,10**4):
  	if i**2+j**2==n:
  		print("Yes")
  		exit()
print("No")
0