結果

問題 No.1593 Perfect Distance
ユーザー Taichi FujiiTaichi Fujii
提出日時 2021-07-09 22:43:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 597 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-07-01 17:51:23
合計ジャッジ時間 10,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 33 ms
10,496 KB
testcase_04 AC 34 ms
10,368 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 32 ms
10,496 KB
testcase_08 AC 40 ms
10,496 KB
testcase_09 AC 116 ms
10,496 KB
testcase_10 AC 335 ms
10,624 KB
testcase_11 AC 571 ms
10,496 KB
testcase_12 AC 1,014 ms
10,496 KB
testcase_13 AC 1,105 ms
10,624 KB
testcase_14 AC 1,292 ms
10,368 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# author:  Taichicchi
# created: 09.07.2021 22:27:12

import sys


def bisearch(f, n):
    l = 0
    r = n
    fl = f(l)
    fr = f(r)
    while l <= r:
        m = (l + r) // 2
        fm = f(m)
        # print l,m,r,fl,fm,fr,n
        if fm == n:
            return m
        elif fm > n:
            r = m - 1
            fr = f(r)
        else:
            l = m + 1
            fl = f(l)


def try_square_root(n2):
    return bisearch(lambda n: n*n, n2)


N = int(input())

ans = 0
for x in range(1, N):
    y2 = pow(N, 2) - pow(x, 2)
    if try_square_root(y2):
        ans += 1

print(ans)
0