結果

問題 No.1593 Perfect Distance
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-07-09 21:25:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-07-01 15:03:34
合計ジャッジ時間 1,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 36 ms
52,680 KB
testcase_06 AC 36 ms
52,596 KB
testcase_07 AC 38 ms
52,880 KB
testcase_08 AC 37 ms
53,544 KB
testcase_09 AC 44 ms
60,368 KB
testcase_10 AC 51 ms
62,720 KB
testcase_11 AC 51 ms
66,560 KB
testcase_12 AC 58 ms
71,808 KB
testcase_13 AC 59 ms
72,064 KB
testcase_14 AC 62 ms
74,752 KB
testcase_15 AC 72 ms
81,280 KB
testcase_16 AC 81 ms
91,392 KB
testcase_17 AC 36 ms
52,532 KB
testcase_18 AC 37 ms
53,628 KB
testcase_19 AC 36 ms
52,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
h=set()
i=1
while i<=n:
    h.add(i**2)
    i+=1

ans=0
x=1
while x<=n:
    y2=n**2-x**2
    if y2 in h:ans+=1
    x+=1

print(ans)
0