Submission #80064


ソースコード

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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
int x, y, z, t;
stack<int> s;
int q;
for (int i = 0; i < n; i++) {
cin >> q;
switch(q) {
case 1:
cin >> x >> y;
for (int j = 0; j < y; j++) {
s.push(x);
}
break;
case 2:
cin >> z;
for (int j = 0; j < z; j++) {
s.pop();
}
break;
case 3:
t = s.size();
for (int j = 0; j < t; j++) {
s.pop();
}
break;
}
}
int sum = 0;
t = s.size();
for (int i = 0; i < t; i++) {
sum += s.top();
s.pop();
}
cout << sum << "\n";
return(0);
}

ステータス

項目 データ
問題 1791 - お団子作り
ユーザー名 ei2328
投稿日時 2024-07-19 15:15:26
言語 C++17
状態 Accepted
得点 100
ソースコード長 701 Byte
最大実行時間 27 ms
最大メモリ使用量 604 KB

セット

セット 得点 Cases
1 ALL 100 / 100 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
in1.txt AC 17 ms 604 KB
1
in2.txt AC 18 ms 572 KB
1
in3.txt AC 19 ms 412 KB
1
in4.txt AC 18 ms 376 KB
1
in5.txt AC 20 ms 464 KB
1
in6.txt AC 24 ms 432 KB
1
in7.txt AC 23 ms 532 KB
1
in8.txt AC 27 ms 460 KB
1