結果

問題 No.1593 Perfect Distance
ユーザー ああいいああいい
提出日時 2022-01-08 18:42:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 61,132 KB
最終ジャッジ日時 2024-11-14 09:43:15
合計ジャッジ時間 1,760 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,776 KB
testcase_01 AC 38 ms
52,768 KB
testcase_02 AC 37 ms
52,124 KB
testcase_03 AC 37 ms
53,604 KB
testcase_04 AC 36 ms
52,876 KB
testcase_05 AC 37 ms
53,120 KB
testcase_06 AC 36 ms
53,048 KB
testcase_07 AC 37 ms
52,264 KB
testcase_08 AC 40 ms
52,648 KB
testcase_09 AC 44 ms
59,988 KB
testcase_10 AC 41 ms
60,456 KB
testcase_11 AC 44 ms
60,048 KB
testcase_12 AC 45 ms
61,132 KB
testcase_13 AC 44 ms
60,896 KB
testcase_14 AC 43 ms
59,816 KB
testcase_15 AC 44 ms
60,632 KB
testcase_16 AC 43 ms
59,572 KB
testcase_17 AC 36 ms
52,788 KB
testcase_18 AC 37 ms
52,520 KB
testcase_19 AC 37 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = 0
from math import sqrt

for x in range(1,N):
    yy = N *N - x * x
    if yy == int(sqrt(yy)) ** 2:ans += 1
print(ans)
0