結果
問題 | No.461 三角形はいくつ? |
ユーザー | kimiyuki |
提出日時 | 2016-12-11 17:37:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 703 bytes |
コンパイル時間 | 408 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 18,844 KB |
最終ジャッジ日時 | 2024-05-06 18:36:59 |
合計ジャッジ時間 | 7,218 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
18,588 KB |
testcase_01 | AC | 36 ms
11,520 KB |
testcase_02 | AC | 36 ms
11,392 KB |
testcase_03 | AC | 35 ms
11,520 KB |
testcase_04 | AC | 292 ms
11,520 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
#!/usr/bin/env python3 # O(N^2 log N) TLE from fractions import Fraction from bisect import bisect_left n = int(input()) qs = [ [] for _ in range(3) ] for i in range(n): p, a, b = map(int, input().split()) qs[p] += [ Fraction(a, a+b) ] for i in range(3): qs[i] += [ Fraction(1) ] qs[i].sort() cnt = 0 for i in range(3): j = (i + 1) % 3 k = (i + 2) % 3 for qj in qs[j]: for qk in qs[k]: qm = max(1 - qj, 1 - qk) qc = (1 - qj) + (1 - qk) if qc <= 1: lm = bisect_left(qs[i], qm) lc = bisect_left(qs[i], qc) cnt += len(qs[i]) - lm - (qs[i][lc] == qc) assert cnt % 3 == 0 print(cnt // 3)