結果

問題 No.461 三角形はいくつ?
ユーザー ヒッキープログラミングするスレ GitHub ガチヒッキープログラミングするスレ GitHub ガチ
提出日時 2016-12-12 04:01:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 766 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 182,676 KB
最終ジャッジ日時 2024-11-29 14:03:18
合計ジャッジ時間 84,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
93,824 KB
testcase_01 AC 133 ms
95,484 KB
testcase_02 AC 137 ms
88,576 KB
testcase_03 AC 128 ms
88,448 KB
testcase_04 AC 213 ms
90,044 KB
testcase_05 AC 3,339 ms
91,060 KB
testcase_06 AC 1,957 ms
90,716 KB
testcase_07 AC 2,337 ms
91,292 KB
testcase_08 AC 1,578 ms
90,820 KB
testcase_09 AC 188 ms
89,600 KB
testcase_10 AC 655 ms
91,644 KB
testcase_11 AC 2,563 ms
91,072 KB
testcase_12 AC 1,269 ms
91,392 KB
testcase_13 AC 3,797 ms
91,084 KB
testcase_14 AC 3,489 ms
92,564 KB
testcase_15 AC 3,839 ms
90,932 KB
testcase_16 AC 264 ms
90,112 KB
testcase_17 AC 255 ms
90,240 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 3,727 ms
91,872 KB
testcase_21 AC 3,804 ms
92,476 KB
testcase_22 AC 3,719 ms
91,344 KB
testcase_23 AC 935 ms
91,612 KB
testcase_24 AC 785 ms
91,464 KB
testcase_25 AC 231 ms
89,984 KB
testcase_26 AC 235 ms
90,112 KB
testcase_27 AC 226 ms
90,112 KB
testcase_28 AC 229 ms
90,112 KB
testcase_29 AC 1,756 ms
90,752 KB
testcase_30 AC 953 ms
90,796 KB
testcase_31 AC 2,982 ms
90,900 KB
testcase_32 AC 3,985 ms
91,072 KB
testcase_33 AC 182 ms
89,984 KB
testcase_34 AC 179 ms
90,112 KB
testcase_35 AC 188 ms
89,856 KB
testcase_36 AC 1,390 ms
90,936 KB
testcase_37 AC 1,309 ms
91,164 KB
testcase_38 AC 1,377 ms
91,180 KB
testcase_39 AC 1,246 ms
90,920 KB
testcase_40 AC 1,340 ms
91,028 KB
testcase_41 AC 1,450 ms
91,292 KB
testcase_42 AC 4,135 ms
92,852 KB
testcase_43 AC 4,404 ms
91,860 KB
testcase_44 AC 3,847 ms
182,676 KB
権限があれば一括ダウンロードができます

ソースコード

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 = sorted(map(sorted, ps), key=len)

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) - mx:
            ans -= 1
        else:
            r = (Fraction(1) - mn) + (Fraction(1) - mx)
            j = bisect_left(ps[2], r, i)
            if ps[2][j] == r:
                ans -= 1

print(ans)
0