結果

問題 No.461 三角形はいくつ?
ユーザー maspymaspy
提出日時 2020-04-08 16:19:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 732 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 180,864 KB
最終ジャッジ日時 2024-07-18 14:58:06
合計ジャッジ時間 29,676 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
180,864 KB
testcase_01 AC 133 ms
88,576 KB
testcase_02 AC 143 ms
88,576 KB
testcase_03 AC 143 ms
88,704 KB
testcase_04 AC 272 ms
90,496 KB
testcase_05 AC 4,907 ms
93,492 KB
testcase_06 AC 2,835 ms
92,560 KB
testcase_07 AC 3,329 ms
92,352 KB
testcase_08 AC 2,361 ms
93,636 KB
testcase_09 AC 240 ms
90,368 KB
testcase_10 AC 976 ms
92,416 KB
testcase_11 AC 3,525 ms
92,064 KB
testcase_12 AC 1,769 ms
93,312 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 764 ms
90,624 KB
testcase_17 AC 781 ms
90,752 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