結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 63 ms
70,272 KB
testcase_05 AC 290 ms
76,780 KB
testcase_06 AC 180 ms
76,544 KB
testcase_07 AC 211 ms
76,544 KB
testcase_08 AC 169 ms
76,544 KB
testcase_09 AC 49 ms
62,336 KB
testcase_10 AC 103 ms
76,528 KB
testcase_11 AC 233 ms
76,800 KB
testcase_12 AC 144 ms
76,672 KB
testcase_13 AC 302 ms
77,008 KB
testcase_14 AC 291 ms
76,792 KB
testcase_15 AC 299 ms
76,928 KB
testcase_16 AC 64 ms
71,552 KB
testcase_17 AC 65 ms
72,064 KB
testcase_18 AC 419 ms
76,672 KB
testcase_19 AC 421 ms
76,416 KB
testcase_20 WA -
testcase_21 AC 295 ms
76,796 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 642 ms
76,416 KB
testcase_26 AC 633 ms
76,160 KB
testcase_27 AC 59 ms
69,248 KB
testcase_28 AC 60 ms
68,992 KB
testcase_29 AC 704 ms
76,288 KB
testcase_30 AC 772 ms
76,928 KB
testcase_31 AC 688 ms
76,544 KB
testcase_32 AC 657 ms
76,456 KB
testcase_33 AC 57 ms
68,608 KB
testcase_34 AC 57 ms
68,224 KB
testcase_35 AC 51 ms
65,024 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

from math import gcd

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

N=int(input())

for i in range(N):
    p,a,b=map(int,input().split())

    GCD=gcd(a,b)
    a//=GCD
    b//=GCD

    L[p].append(b/(a+b))

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

ANS=0

SET=set(L[2])

for x in L[0]:
    for y in L[1]:
        if x+y>1:
            break
        MAX=max(x,y)

        k=bisect(L[2],1-MAX)

        #print(x,y,L[2],k,1-MAX)

        ANS+=k

        z=x+y
        if z<1-MAX and 1-z in SET:
            #print(x,y,z)
            ANS-=1

print(ANS)


        

0