結果
問題 | No.461 三角形はいくつ? |
ユーザー | te-sh |
提出日時 | 2017-12-15 17:57:34 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,095 bytes |
コンパイル時間 | 702 ms |
コンパイル使用メモリ | 105,984 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 23:07:47 |
合計ジャッジ時間 | 7,000 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 7 ms
6,944 KB |
testcase_17 | AC | 6 ms
6,944 KB |
testcase_18 | AC | 166 ms
6,944 KB |
testcase_19 | AC | 168 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 102 ms
6,940 KB |
testcase_26 | AC | 99 ms
6,940 KB |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | AC | 3 ms
6,940 KB |
testcase_29 | AC | 248 ms
6,944 KB |
testcase_30 | AC | 237 ms
6,944 KB |
testcase_31 | AC | 253 ms
6,940 KB |
testcase_32 | AC | 254 ms
6,944 KB |
testcase_33 | AC | 3 ms
6,940 KB |
testcase_34 | AC | 3 ms
6,944 KB |
testcase_35 | AC | 3 ms
6,940 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 | - |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; void main() { auto n = readln.chomp.to!int; auto f = new Frac[][](3); foreach (i; 0..n) { auto rd = readln.splitter; auto p = rd.front.to!int; rd.popFront(); auto a = rd.front.to!int; rd.popFront(); auto b = rd.front.to!int; f[p] ~= Frac(b, a+b); } f[0] ~= Frac(0, 1); f[1] ~= Frac(0, 1); f[2] ~= Frac(0, 1); f[2].sort(); auto ans = 0L, u = Frac(1, 1); foreach (f0; f[0]) foreach (f1; f[1]) { if (f0+f1 > u) continue; ans += f[2].length; ans -= f[2].assumeSorted.equalRange(u-f0-f1).length; ans -= f[2].assumeSorted.upperBound(u-f0).length; ans -= f[2].assumeSorted.upperBound(u-f1).length; } writeln(ans); } struct Frac { long num, den; auto opCmp(Frac rhs) { return num * rhs.den - rhs.num * den; } auto opBinary(string op: "+")(Frac rhs) { return Frac(num * rhs.den + rhs.num * den, den * rhs.den); } auto opBinary(string op: "-")(Frac rhs) { return Frac(num * rhs.den - rhs.num * den, den * rhs.den); } }