結果

問題 No.461 三角形はいくつ?
ユーザー ヒッキープログラミングするスレ GitHub ガチヒッキープログラミングするスレ GitHub ガチ
提出日時 2016-12-12 02:01:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 963 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 183,812 KB
最終ジャッジ日時 2024-11-29 12:23:53
合計ジャッジ時間 115,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
179,328 KB
testcase_01 AC 129 ms
179,712 KB
testcase_02 AC 116 ms
179,832 KB
testcase_03 AC 123 ms
179,200 KB
testcase_04 AC 232 ms
181,248 KB
testcase_05 AC 3,699 ms
92,520 KB
testcase_06 AC 2,160 ms
93,368 KB
testcase_07 AC 2,498 ms
92,136 KB
testcase_08 AC 1,812 ms
92,512 KB
testcase_09 AC 182 ms
89,728 KB
testcase_10 AC 761 ms
91,956 KB
testcase_11 AC 2,773 ms
92,800 KB
testcase_12 AC 1,395 ms
92,288 KB
testcase_13 AC 4,042 ms
92,508 KB
testcase_14 AC 3,782 ms
91,640 KB
testcase_15 AC 3,974 ms
92,272 KB
testcase_16 AC 263 ms
90,112 KB
testcase_17 AC 251 ms
89,728 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 WA -
testcase_21 AC 3,861 ms
92,416 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 219 ms
89,728 KB
testcase_28 AC 243 ms
90,240 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 260 ms
90,368 KB
testcase_34 AC 250 ms
90,112 KB
testcase_35 AC 169 ms
89,856 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 1,608 ms
92,792 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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