結果

問題 No.1593 Perfect Distance
ユーザー tcltktcltk
提出日時 2021-11-19 23:55:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 89,556 KB
最終ジャッジ日時 2024-06-10 11:43:27
合計ジャッジ時間 3,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
86,980 KB
testcase_01 AC 119 ms
86,856 KB
testcase_02 AC 119 ms
86,408 KB
testcase_03 AC 117 ms
86,776 KB
testcase_04 AC 108 ms
87,004 KB
testcase_05 AC 107 ms
87,012 KB
testcase_06 AC 111 ms
86,996 KB
testcase_07 AC 111 ms
86,864 KB
testcase_08 AC 110 ms
86,944 KB
testcase_09 AC 139 ms
87,720 KB
testcase_10 AC 122 ms
87,532 KB
testcase_11 AC 127 ms
87,828 KB
testcase_12 AC 128 ms
87,248 KB
testcase_13 AC 132 ms
89,556 KB
testcase_14 AC 126 ms
87,716 KB
testcase_15 AC 131 ms
87,780 KB
testcase_16 AC 115 ms
87,220 KB
testcase_17 AC 111 ms
86,528 KB
testcase_18 AC 113 ms
86,860 KB
testcase_19 AC 113 ms
86,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """5
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10


N = int(input())

n = 0
x = 1
while True:
    if x*x + 1 > N*N:
        break
    y = int(math.sqrt(N*N - x*x + 0.001))
    if x*x + y*y == N*N:
        n += 1
    x += 1
print(n)
0