結果

問題 No.1144 Triangles
ユーザー ei1333333ei1333333
提出日時 2020-07-31 22:50:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 842 ms / 3,000 ms
コード長 555 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 205,108 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 20:15:01
合計ジャッジ時間 13,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 833 ms
6,940 KB
testcase_05 AC 832 ms
6,940 KB
testcase_06 AC 821 ms
6,944 KB
testcase_07 AC 842 ms
6,940 KB
testcase_08 AC 831 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 742 ms
6,940 KB
testcase_15 AC 720 ms
6,940 KB
testcase_16 AC 777 ms
6,944 KB
testcase_17 AC 790 ms
6,940 KB
testcase_18 AC 791 ms
6,940 KB
testcase_19 AC 53 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 747 ms
6,940 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 AC 723 ms
6,940 KB
testcase_25 AC 143 ms
6,944 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 751 ms
6,940 KB
testcase_28 AC 78 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using int64 = long long;
const int mod = 1e9 + 7;

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")

int main() {
  int n, x[2000], y[2000];
  cin >> n;
  for(int i = 0; i < n; i++) {
    cin >> x[i] >> y[i];
  }
  int64 ret = 0;
  for(int i = 0; i < n; i++) {
    for(int j = i + 1; j < n; j++) {
      for(int z = j + 1; z < n; z++) {
        ret += abs((x[j] - x[i]) * (y[j] + y[i]) + (x[i] - x[z]) * (y[i] + y[z]) + (x[z] - x[j]) * (y[z] + y[j]));
      }
    }
  }
  cout << ret % mod << "\n";
}

0