結果

問題 No.1593 Perfect Distance
ユーザー titan23titan23
提出日時 2022-06-29 01:46:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 60,648 KB
最終ジャッジ日時 2024-11-21 20:53:44
合計ジャッジ時間 2,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,912 KB
testcase_01 AC 42 ms
57,980 KB
testcase_02 AC 42 ms
58,872 KB
testcase_03 AC 42 ms
58,304 KB
testcase_04 AC 41 ms
59,304 KB
testcase_05 AC 42 ms
58,412 KB
testcase_06 AC 42 ms
58,344 KB
testcase_07 AC 42 ms
59,188 KB
testcase_08 AC 42 ms
58,132 KB
testcase_09 AC 51 ms
59,764 KB
testcase_10 AC 44 ms
60,648 KB
testcase_11 AC 49 ms
60,160 KB
testcase_12 AC 51 ms
60,160 KB
testcase_13 AC 53 ms
60,256 KB
testcase_14 AC 53 ms
60,092 KB
testcase_15 AC 56 ms
60,276 KB
testcase_16 AC 58 ms
58,656 KB
testcase_17 AC 42 ms
58,936 KB
testcase_18 AC 40 ms
58,396 KB
testcase_19 AC 41 ms
58,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

n = int(input())
ans = 0
for x in range(1, 200001):
  y2 = n*n - x*x
  if y2 > 0 and math.sqrt(y2) % 1 == 0:
    ans += 1
print(ans)
0