結果

問題 No.1593 Perfect Distance
ユーザー Tomii9273Tomii9273
提出日時 2021-07-10 03:26:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-07-01 22:44:53
合計ジャッジ時間 1,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 38 ms
51,948 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 50 ms
61,440 KB
testcase_09 AC 54 ms
62,848 KB
testcase_10 AC 55 ms
64,128 KB
testcase_11 AC 53 ms
63,232 KB
testcase_12 AC 62 ms
64,512 KB
testcase_13 AC 60 ms
67,364 KB
testcase_14 AC 62 ms
68,096 KB
testcase_15 AC 67 ms
70,400 KB
testcase_16 AC 67 ms
71,680 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 38 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
# sys.setrecursionlimit(10 ** 9)  # Codeforcesでは350000程度に
def input(): return sys.stdin.readline().strip()


n = int(input())

ans = 0
n2 = n**2
for x in range(1, n):
    y_can_2 = n**2 - x**2
    y_can = int(y_can_2**0.5)
    for y in range(y_can-1, y_can+2):
        if y > 0 and y**2 == y_can_2:
            ans += 1
            break
print(ans)
0