[swexpert] 1940. 가랏! RC카! (D2, JAVA)
728x90
반응형
import java.util.Scanner;
public class Solution {
static int t,n;
static int x,speed;
static int answer;
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
t=sc.nextInt();
for (int tc = 1; tc <=t; tc++) {
answer=0;
speed=0;
n=sc.nextInt();
for (int i = 0; i < n; i++) {
x=sc.nextInt();
if(x==1) {
speed+=sc.nextInt();
}else if(x==2) {
speed-=sc.nextInt();
if(speed<0)speed=0;
}
answer+=speed;
}
System.out.printf("#%d %d\n",tc,answer);
}
}
}
728x90
반응형
'swexpert' 카테고리의 다른 글
[swexpert] 6808. 규영이와 인영이의 카드게임 (java, D3) (0) | 2021.02.15 |
---|---|
[swexpert] 1233. 사칙연산 유효성 검사 (JAVA) (0) | 2021.02.09 |
[swexpert] 9229. 한빈이와 Spot Mart (D3, java) (0) | 2021.02.08 |
[swexpert] 1228. 암호문1 (java, D3) (0) | 2021.02.08 |
[swexpert] 5215. 햄버거 다이어트 (java, D3) (0) | 2021.02.08 |
TAGS.