結果

問題 No.1593 Perfect Distance
ユーザー tassei903tassei903
提出日時 2021-07-09 21:30:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-07-01 15:16:28
合計ジャッジ時間 1,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 43 ms
59,776 KB
testcase_08 AC 48 ms
61,568 KB
testcase_09 AC 49 ms
61,696 KB
testcase_10 AC 58 ms
64,384 KB
testcase_11 AC 56 ms
65,280 KB
testcase_12 AC 59 ms
67,072 KB
testcase_13 AC 60 ms
67,200 KB
testcase_14 AC 61 ms
68,096 KB
testcase_15 AC 64 ms
70,016 KB
testcase_16 AC 67 ms
72,576 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################
n = ni()
ans = 0
for i in range(1,n):
    y1 = int((n**2-i**2)**0.5)
    for j in range(-2,3):
        if y1+j<=0:
            continue
        if (y1+j)*(y1+j)+i*i==n*n:
            ans+=1
print(ans)
0