結果

問題 No.1336 Union on Blackboard
ユーザー polyesterpolyester
提出日時 2021-01-15 23:23:11
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,293 bytes
コンパイル時間 1,005 ms
コンパイル使用メモリ 104,396 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-17 19:05:40
合計ジャッジ時間 2,079 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 3 ms
4,380 KB
testcase_02 AC 3 ms
4,380 KB
testcase_03 AC 3 ms
4,380 KB
testcase_04 AC 3 ms
4,376 KB
testcase_05 AC 3 ms
4,376 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 3 ms
4,376 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 4 ms
4,376 KB
testcase_11 AC 4 ms
4,380 KB
testcase_12 AC 4 ms
4,376 KB
testcase_13 AC 4 ms
4,380 KB
testcase_14 AC 4 ms
4,384 KB
testcase_15 AC 4 ms
4,380 KB
testcase_16 AC 4 ms
4,380 KB
testcase_17 AC 4 ms
4,376 KB
testcase_18 AC 4 ms
4,380 KB
testcase_19 AC 4 ms
4,380 KB
testcase_20 AC 4 ms
4,376 KB
testcase_21 AC 4 ms
4,376 KB
testcase_22 AC 4 ms
4,376 KB
testcase_23 AC 4 ms
4,376 KB
testcase_24 AC 4 ms
4,376 KB
testcase_25 AC 4 ms
4,376 KB
testcase_26 AC 4 ms
4,384 KB
testcase_27 AC 4 ms
4,380 KB
testcase_28 AC 4 ms
4,380 KB
testcase_29 AC 4 ms
4,380 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <functional>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
using namespace std;
using ll = long long;
const ll MOD = 1000000007;

long long modinv(long long a, long long m) {
  long long b = m, u = 1, v = 0;
  while(b) {
    long long t = a / b;
    a -= t * b;
    swap(a, b);
    u -= t * v;
    swap(u, v);
  }
  u %= m;
  if(u < 0)
    u += m;
  return u;
}
int main() {
  int t;
  cin >> t;
  while(t--) {
    int n;
    cin >> n;
    vector<ll> a(n);
    ll sum = 0;
    for(int i = 0; i < n; i++) {
      cin >> a[i];
      sum += a[i];
    }
    for(int i = n - 1; i > 0; i--) {
      ll tmp = a[i] + a[i - 1] + (a[i] * a[i - 1]);
      a.pop_back();
      a.pop_back();
      tmp %= MOD;
      a.push_back(tmp);
    }
    cout << a[0] << '\n';
    // if(a[0] == 0) {
    //   cout << 0 << '\n';
    //   continue;
    // }
    // ll q = 1;
    // for(int i = 0; i < n; i++) {
    //   q *= (i + 1);
    //   q %= MOD;
    // }
    // q /= 2;
    // cout << a[0] << " " << q << '\n';
    // a[0] %= MOD;
    // ll g = gcd(q, a[0]);
    // q /= g, a[0] /= g;
    // cout << a[0] * modinv(q, MOD) % MOD << '\n';
  }
  return 0;
}
0