結果
問題 | No.1681 +-* |
ユーザー | Nanashima |
提出日時 | 2021-09-17 22:33:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 847 bytes |
コンパイル時間 | 1,332 ms |
コンパイル使用メモリ | 171,024 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 21:17:37 |
合計ジャッジ時間 | 3,336 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 95 ms
6,940 KB |
testcase_09 | AC | 95 ms
6,940 KB |
testcase_10 | AC | 95 ms
6,940 KB |
testcase_11 | AC | 95 ms
6,940 KB |
testcase_12 | AC | 96 ms
6,944 KB |
testcase_13 | AC | 50 ms
6,940 KB |
testcase_14 | AC | 98 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0; i<(n); i++) #define INF ((1LL<<62)-(1LL<<31)) #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(),(a).rend() typedef long long ll; typedef pair<ll,ll> pl; const ll mod=1000000007; ll modpow(ll n,ll r) { ll num=1; while(r) { if(r&1) num=num*n%mod; n=n*n%mod; r/=2; } return num; } int main() { ll n; cin >> n; vector<ll> a(n); ll tot=1; rep(i,n) { cin >> a[i]; tot*=a[i]; tot%=mod; } reverse(all(a)); ll ans=tot,num=2; tot*=modpow(a[0],mod-2); tot%=mod; for(int i=1;i<n;i++) { ans=(ans+(tot*num)%mod)%mod; tot*=modpow(a[i],mod-2); tot%=mod; num*=3; num%=mod; } cout << ans << endl; return 0; }