結果

問題 No.461 三角形はいくつ?
ユーザー maspymaspy
提出日時 2020-04-08 16:19:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 732 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 11,000 KB
実行使用メモリ 14,992 KB
最終ジャッジ日時 2023-09-25 18:50:52
合計ジャッジ時間 7,205 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
9,856 KB
testcase_01 AC 30 ms
9,768 KB
testcase_02 AC 30 ms
9,836 KB
testcase_03 AC 30 ms
9,764 KB
testcase_04 AC 90 ms
9,844 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools
from fractions import Fraction
from bisect import bisect_left, bisect_right

N = int(readline())
X = [[Fraction(0, 1)] for _ in range(3)]
m = map(int, read().split())
for p, a, b in zip(m, m, m):
    X[p].append(Fraction(b, a + b))

X.sort(key=len)
X[0].sort()
X[1].sort()
X[2].sort()


def solve(X, Y, Z):
    ret = 0
    for x, y in itertools.product(X, Y):
        if x + y > 1:
            continue
        cnt = bisect_right(Z, 1 - max(x, y))
        z = 1 - x - y
        cnt -= bisect_right(Z, z) - bisect_left(Z, z)
        ret += cnt
    return ret


print(solve(*X))
0