結果
| 問題 | No.1081 和の和 |
| コンテスト | |
| ユーザー |
CELICA
|
| 提出日時 | 2020-06-21 21:23:07 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 448 bytes |
| 記録 | |
| コンパイル時間 | 1,567 ms |
| コンパイル使用メモリ | 167,608 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-03 18:23:32 |
| 合計ジャッジ時間 | 1,917 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
constexpr long m = 1000000007;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
long a[n];
for (int i=0;i<n;++i)
cin >> a[i];
for (int i=n-1;i>0;--i)
{
for (int j=0;j<=i;++j)
{
a[j]+=a[j+1];
if (a[j]>m)
a[j]%=m;
}
}
cout << a[0] << "\n";
return 0;
}
CELICA