結果
問題 | No.1102 Remnants |
ユーザー | 👑 Nachia |
提出日時 | 2020-10-21 22:51:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 1,305 bytes |
コンパイル時間 | 1,670 ms |
コンパイル使用メモリ | 167,384 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 09:10:41 |
合計ジャッジ時間 | 3,680 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 59 ms
5,376 KB |
testcase_06 | AC | 16 ms
5,376 KB |
testcase_07 | AC | 105 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 7 ms
5,376 KB |
testcase_13 | AC | 6 ms
5,376 KB |
testcase_14 | AC | 39 ms
5,376 KB |
testcase_15 | AC | 31 ms
5,376 KB |
testcase_16 | AC | 77 ms
5,376 KB |
testcase_17 | AC | 72 ms
5,376 KB |
testcase_18 | AC | 91 ms
5,376 KB |
testcase_19 | AC | 32 ms
5,376 KB |
testcase_20 | AC | 11 ms
5,376 KB |
testcase_21 | AC | 56 ms
5,376 KB |
testcase_22 | AC | 79 ms
5,376 KB |
testcase_23 | AC | 61 ms
5,376 KB |
testcase_24 | AC | 44 ms
5,376 KB |
testcase_25 | AC | 93 ms
5,376 KB |
testcase_26 | AC | 8 ms
5,376 KB |
testcase_27 | AC | 28 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using LL = long long; using ULL = unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) template<ULL M> struct MLL { ULL x; MLL(ULL val = 0) : x(val) {} MLL& operator+=(MLL r) { x += r.x; if (x >= M) x -= M; return *this; } MLL operator+(MLL r) const { MLL res = x; return res += r; } MLL& operator-=(MLL r) { x += M - r.x; if (x >= M) x -= M; return *this; } MLL operator-(MLL r) const { MLL res = x; return res -= r; } MLL& operator*=(MLL r) { x = x * r.x % M; return *this; } MLL operator*(MLL r) const { return MLL(x * r.x % M); } MLL operator^(ULL r) const { if (r == 0) return MLL(1); MLL res = (*this * *this) ^ (r / 2); if (r % 2) res *= *this; return res; } MLL& operator^=(ULL r) { return *this = *this ^ r; } MLL& operator/=(MLL r) { *this *= r ^ (M - 1); return *this; } MLL operator/(MLL r) const { return *this * (r ^ (M - 2)); } ULL& operator*() { return x; } const ULL& operator*() const { return x; } }; using MLL1 = MLL<1000000007>; MLL1 F[200001]; int N; int K; int main() { cin >> N >> K; F[0] = 1; rep(i, N) F[i + 1] = F[i] * (K + i) / (i + 1); rep(i, N) F[i + 1] += F[i]; MLL1 ans = 0; rep(i, N) { MLL1 a; cin >> *a; ans += a * F[i] * F[N - 1 - i]; } cout << *ans << endl; return 0; }