結果

問題 No.1593 Perfect Distance
ユーザー neterukunneterukun
提出日時 2021-07-09 21:26:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-07-01 15:07:59
合計ジャッジ時間 1,902 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,856 KB
testcase_01 AC 43 ms
57,856 KB
testcase_02 AC 43 ms
57,728 KB
testcase_03 AC 42 ms
57,984 KB
testcase_04 AC 42 ms
57,856 KB
testcase_05 AC 42 ms
57,856 KB
testcase_06 AC 42 ms
57,856 KB
testcase_07 AC 43 ms
58,368 KB
testcase_08 AC 44 ms
58,624 KB
testcase_09 AC 51 ms
62,080 KB
testcase_10 AC 49 ms
59,648 KB
testcase_11 AC 54 ms
61,696 KB
testcase_12 AC 57 ms
62,080 KB
testcase_13 AC 57 ms
61,824 KB
testcase_14 AC 57 ms
61,696 KB
testcase_15 AC 62 ms
61,952 KB
testcase_16 AC 61 ms
59,776 KB
testcase_17 AC 43 ms
58,112 KB
testcase_18 AC 43 ms
57,600 KB
testcase_19 AC 42 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())


res = 0
for y in range(1, 200010):
    ans = n ** 2 - y ** 2
    if ans > 0 and int(ans ** 0.5) == ans ** 0.5:
        res += 1
print(res)
0