結果

問題 No.461 三角形はいくつ?
ユーザー pekempeypekempey
提出日時 2016-12-12 00:55:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,214 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 185,068 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-29 04:39:21
合計ジャッジ時間 102,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,704 KB
testcase_01 AC 2 ms
10,624 KB
testcase_02 AC 2 ms
8,704 KB
testcase_03 AC 2 ms
8,576 KB
testcase_04 AC 3 ms
8,576 KB
testcase_05 TLE -
testcase_06 AC 2,282 ms
8,576 KB
testcase_07 AC 2,861 ms
8,704 KB
testcase_08 AC 1,542 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 245 ms
5,248 KB
testcase_11 AC 3,578 ms
5,248 KB
testcase_12 AC 936 ms
5,248 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 15 ms
5,248 KB
testcase_17 AC 14 ms
5,248 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 672 ms
5,248 KB
testcase_24 AC 544 ms
5,248 KB
testcase_25 AC 37 ms
5,248 KB
testcase_26 AC 37 ms
5,248 KB
testcase_27 AC 19 ms
5,248 KB
testcase_28 AC 19 ms
5,248 KB
testcase_29 AC 2,464 ms
5,248 KB
testcase_30 AC 1,192 ms
5,248 KB
testcase_31 AC 4,423 ms
5,248 KB
testcase_32 TLE -
testcase_33 AC 5 ms
5,248 KB
testcase_34 AC 5 ms
5,248 KB
testcase_35 AC 5 ms
5,248 KB
testcase_36 AC 1,426 ms
5,248 KB
testcase_37 AC 1,284 ms
5,248 KB
testcase_38 AC 1,382 ms
5,248 KB
testcase_39 AC 1,074 ms
5,248 KB
testcase_40 AC 1,393 ms
5,248 KB
testcase_41 AC 1,304 ms
5,248 KB
testcase_42 AC 3,726 ms
5,248 KB
testcase_43 AC 3,782 ms
5,248 KB
testcase_44 AC 3,608 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;

    vector<vector<int64_t>> a(3), b(3);
    for (int i = 0; i < 3; i++) {
        a[i].push_back(1);
        b[i].push_back(1);
    }
    for (int i = 0; i < n; i++) {
        int p, ta, tb;
        cin >> p >> ta >> tb;
        a[p].push_back(ta);
        b[p].push_back(ta + tb);
    }
    int ans = 0;
    for (int i = 0; i < a[0].size(); i++) {
        for (int j = 0; j < a[1].size(); j++) {
            if (a[0][i] * b[1][j] + a[1][j] * b[0][i] < b[0][i] * b[1][j]) {
                continue;
            }

            for (int k = 0; k < a[2].size(); k++) {
                if (a[1][j] * b[2][k] + a[2][k] * b[1][j] < b[1][j] * b[2][k]) {
                    continue;
                }
                if (a[0][i] * b[2][k] + a[2][k] * b[0][i] < b[0][i] * b[2][k]) {
                    continue;
                }
                if (a[0][i] * b[1][j] * b[2][k] + a[1][j] * b[0][i] * b[2][k] + a[2][k] * b[0][i] * b[1][j] != 2 * b[0][i] * b[1][j] * b[2][k]) {
                    ans++;
                }
            }
        }
    }
    cout << ans << endl;
}
0