結果

問題 No.1593 Perfect Distance
ユーザー Fullmoon85072Fullmoon85072
提出日時 2021-11-28 15:08:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,528 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-07-01 09:37:52
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
51,944 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 41 ms
52,736 KB
testcase_09 AC 48 ms
59,648 KB
testcase_10 AC 45 ms
59,520 KB
testcase_11 AC 50 ms
60,800 KB
testcase_12 AC 51 ms
61,056 KB
testcase_13 AC 51 ms
61,112 KB
testcase_14 AC 52 ms
61,440 KB
testcase_15 AC 53 ms
61,952 KB
testcase_16 AC 56 ms
61,824 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())

twoN = math.pow(N, 2)

count = 0
for x in range(N):
    y = math.sqrt(twoN - math.pow(x+1, 2))
    if y > 1 and y == int(y):
        count += 1
print(count)
0