結果

問題 No.461 三角形はいくつ?
ユーザー maspymaspy
提出日時 2020-04-08 16:19:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 732 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 86,544 KB
実行使用メモリ 98,140 KB
最終ジャッジ日時 2023-09-25 18:51:44
合計ジャッジ時間 44,662 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
89,320 KB
testcase_01 AC 233 ms
89,292 KB
testcase_02 AC 235 ms
89,276 KB
testcase_03 AC 236 ms
89,160 KB
testcase_04 AC 401 ms
93,296 KB
testcase_05 TLE -
testcase_06 AC 3,048 ms
94,744 KB
testcase_07 AC 3,568 ms
95,576 KB
testcase_08 AC 2,550 ms
96,496 KB
testcase_09 AC 356 ms
92,056 KB
testcase_10 AC 1,152 ms
98,140 KB
testcase_11 AC 3,887 ms
96,444 KB
testcase_12 AC 2,033 ms
97,196 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 992 ms
94,732 KB
testcase_17 AC 983 ms
94,852 KB
testcase_18 TLE -
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