結果

問題 No.461 三角形はいくつ?
ユーザー ヒッキープログラミングするスレ GitHub ガチヒッキープログラミングするスレ GitHub ガチ
提出日時 2016-12-12 02:00:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 963 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-11-29 12:20:21
合計ジャッジ時間 187,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
23,296 KB
testcase_01 AC 30 ms
22,912 KB
testcase_02 AC 31 ms
23,168 KB
testcase_03 AC 32 ms
16,512 KB
testcase_04 AC 101 ms
22,912 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 53 ms
16,512 KB
testcase_10 AC 2,669 ms
23,424 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 157 ms
17,280 KB
testcase_17 AC 153 ms
23,808 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 123 ms
23,680 KB
testcase_28 AC 127 ms
23,808 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 143 ms
12,032 KB
testcase_34 AC 133 ms
12,032 KB
testcase_35 AC 87 ms
12,032 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
from bisect import bisect_left

n = int(input())

ps = [[Fraction(1)], [Fraction(1)], [Fraction(1)]]

for _ in range(n):
    p, a, b = map(int, input().split())
    ps[p].append(Fraction(a, a + b))

ps = list(map(sorted, ps))

ans = 0
for x in ps[0]:
    t = bisect_left(ps[1], Fraction(1) - x) 
    for c in range(t, len(ps[1])):
        y = ps[1][c]
        mn, mx = (x, y) if x < y else (y, x)
        k = Fraction(1) - mn
        i = bisect_left(ps[2], k)
        ans += len(ps[2]) - i
        if mn > Fraction(1, 2):
            r = (Fraction(1) - mn) + (Fraction(1) - mx)
            j = bisect_left(ps[2], r)
            if ps[2][j] == r:
                ans -= 1
        elif mn == Fraction(1) - mx:
            ans -= 1
        elif mn != mx:
            r = mn - (Fraction(1) - mx)
            j = bisect_left(ps[2], r)
            if ps[2][j] == r:
                ans -= 1
        else:
            ans -= 1

print(ans)
0