結果

問題 No.461 三角形はいくつ?
ユーザー titiatitia
提出日時 2023-09-19 03:32:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-05 16:10:50
合計ジャッジ時間 12,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 44 ms
53,248 KB
testcase_03 AC 45 ms
53,376 KB
testcase_04 AC 76 ms
71,424 KB
testcase_05 AC 308 ms
76,940 KB
testcase_06 AC 201 ms
76,416 KB
testcase_07 AC 218 ms
76,544 KB
testcase_08 AC 179 ms
76,416 KB
testcase_09 AC 59 ms
63,616 KB
testcase_10 AC 123 ms
76,672 KB
testcase_11 AC 249 ms
77,188 KB
testcase_12 AC 155 ms
77,184 KB
testcase_13 AC 297 ms
76,928 KB
testcase_14 AC 293 ms
77,312 KB
testcase_15 AC 300 ms
76,672 KB
testcase_16 AC 74 ms
72,064 KB
testcase_17 AC 74 ms
72,960 KB
testcase_18 AC 405 ms
76,672 KB
testcase_19 AC 416 ms
76,416 KB
testcase_20 WA -
testcase_21 AC 295 ms
76,928 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 657 ms
76,288 KB
testcase_26 AC 654 ms
76,800 KB
testcase_27 AC 70 ms
69,632 KB
testcase_28 AC 70 ms
70,656 KB
testcase_29 AC 715 ms
76,544 KB
testcase_30 AC 770 ms
76,928 KB
testcase_31 AC 659 ms
76,416 KB
testcase_32 AC 667 ms
76,672 KB
testcase_33 AC 68 ms
69,504 KB
testcase_34 AC 67 ms
69,120 KB
testcase_35 AC 62 ms
65,664 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from bisect import bisect_left
from collections import Counter

L=[[0] for i in range(3)]

N=int(input())

for i in range(N):
    p,a,b=map(int,input().split())
    L[p].append(b/(a+b))

L[0].sort()
L[1].sort()
L[2].sort()

ANS=0
C=Counter(L[2])

for x in L[0]:
    for y in L[1]:
        if x+y>1:
            break
        MAX=max(x,y)
        k=bisect_left(L[2],1-MAX)
        ANS+=k
        z=x+y
        if z<1-MAX and 1-z in C:
            ANS-=C[1-z]

print(ANS)


        

0