結果

問題 No.461 三角形はいくつ?
ユーザー pekempeypekempey
提出日時 2016-12-12 02:18:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 742 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 102,512 KB
最終ジャッジ日時 2024-11-29 12:40:35
合計ジャッジ時間 144,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
88,764 KB
testcase_01 AC 117 ms
88,792 KB
testcase_02 AC 119 ms
88,724 KB
testcase_03 AC 121 ms
88,348 KB
testcase_04 AC 261 ms
90,896 KB
testcase_05 TLE -
testcase_06 AC 2,685 ms
92,852 KB
testcase_07 AC 3,057 ms
91,740 KB
testcase_08 AC 2,369 ms
91,452 KB
testcase_09 AC 228 ms
90,260 KB
testcase_10 AC 1,000 ms
91,684 KB
testcase_11 AC 3,351 ms
91,824 KB
testcase_12 AC 1,845 ms
90,972 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 3,129 ms
92,260 KB
testcase_17 AC 3,198 ms
92,780 KB
testcase_18 AC 4,533 ms
91,340 KB
testcase_19 AC 4,500 ms
91,336 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 3,459 ms
92,848 KB
testcase_24 AC 3,643 ms
92,476 KB
testcase_25 AC 3,899 ms
90,904 KB
testcase_26 AC 3,769 ms
91,220 KB
testcase_27 AC 236 ms
90,648 KB
testcase_28 AC 3,959 ms
91,788 KB
testcase_29 AC 4,639 ms
91,060 KB
testcase_30 AC 4,135 ms
91,320 KB
testcase_31 AC 4,503 ms
91,528 KB
testcase_32 AC 4,463 ms
90,952 KB
testcase_33 AC 225 ms
91,000 KB
testcase_34 AC 214 ms
90,076 KB
testcase_35 AC 217 ms
90,656 KB
testcase_36 AC 3,702 ms
92,396 KB
testcase_37 AC 3,470 ms
92,332 KB
testcase_38 AC 3,610 ms
92,460 KB
testcase_39 AC 3,557 ms
93,076 KB
testcase_40 AC 3,822 ms
92,352 KB
testcase_41 AC 3,999 ms
102,512 KB
testcase_42 AC 4,919 ms
91,660 KB
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction

n = int(input())

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

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

f[1].sort()
f[2].sort()

ans = 0
for i in range(len(f[0])):
	k0 = len(f[2])

	while k0 > 0 and f[0][i] + f[2][k0 - 1] >= Fraction(1, 1):
		k0 -= 1

	k1 = len(f[2])
	k2 = len(f[2])
	for j in range(len(f[1])):
		while k1 > 0 and f[1][j] + f[2][k1 - 1] >= Fraction(1, 1):
			k1 -= 1
		while k2 > 0 and f[0][i] + f[1][j] + f[2][k2 - 1] >= Fraction(2, 1):
			k2 -= 1
		if f[0][i] + f[1][j] < Fraction(1, 1):
			continue
		if k2 < len(f[2]) and f[0][i] + f[1][j] + f[2][k2] == Fraction(2, 1):
			ans -= 1
		ans += len(f[2]) - max(k0, k1)
print(ans)
0