Submission #00090
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #include<bits/stdc++.h> using namespace std; #define kai "\n" #define mo return 0 int main(){ int n,m; cin>>n; vector< int > d(n+1); for ( int i=1;i<=n;i++){ int s; cin>>s; d[i]+=s+d[i-1]; } cin>>m; cout<< "\n" ; for ( int i=0;i<=n;i++){ cout<<d[i]<< ' ' ; } cout<< "\n" ; for ( int i=0;i<m;i++){ int a,b; cin>>a>>b; cout<<d[b]-d[a-1]<< "\n" ; } return 0; } |
ステータス
項目 | データ |
---|---|
問題 | 0002 - プログラミング入門:累積和 |
ユーザー名 | e2311 |
投稿日時 | 2023-11-20 17:47:50 |
言語 | C++11 |
状態 | Wrong Answer |
得点 | 0 |
ソースコード長 | 480 Byte |
最大実行時間 | 2549 ms |
最大メモリ使用量 | 65880 KB |
セット
セット | 得点 | Cases | |
---|---|---|---|
1 | ALL | 0 / 30 | * |
テストケース
ファイル名 | 状態 | 実行時間 | メモリ使用量 | # |
---|---|---|---|---|
Input01 | WA | 194 ms | 13016 KB |
1
|
Input02 | WA | 211 ms | 21496 KB |
1
|
Input03 | WA | 426 ms | 31124 KB |
1
|
Input04 | WA | 2549 ms | 48436 KB |
1
|
Input05 | WA | 2479 ms | 65880 KB |
1
|