結果

問題 No.1144 Triangles
ユーザー ei1333333ei1333333
提出日時 2020-07-31 22:48:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,255 ms / 3,000 ms
コード長 517 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 200,072 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 20:14:11
合計ジャッジ時間 30,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2,231 ms
5,376 KB
testcase_05 AC 2,230 ms
5,376 KB
testcase_06 AC 2,216 ms
5,376 KB
testcase_07 AC 2,255 ms
5,376 KB
testcase_08 AC 2,232 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1,951 ms
5,376 KB
testcase_15 AC 1,915 ms
5,376 KB
testcase_16 AC 2,102 ms
5,376 KB
testcase_17 AC 2,100 ms
5,376 KB
testcase_18 AC 2,123 ms
5,376 KB
testcase_19 AC 135 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 1,999 ms
5,376 KB
testcase_23 AC 35 ms
5,376 KB
testcase_24 AC 1,996 ms
5,376 KB
testcase_25 AC 400 ms
5,376 KB
testcase_26 AC 15 ms
5,376 KB
testcase_27 AC 2,085 ms
5,376 KB
testcase_28 AC 202 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

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

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]));
      }
      ret %= mod;
    }
  }
  cout << ret % mod << "\n";
}

0