[백준 2010번] 플러그
[백준 2010번] 플러그
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | package _2월_1주차; import java.util.Scanner; public class 백준_손수경_정답_2010 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int ans = 0; for (int i = 0; i < n; i++) { if (i != (n - 1)) { ans += sc.nextInt(); ans--; } else { ans += sc.nextInt(); } } System.out.println(ans); } } | cs |
새로운 플러그를 꽂기 위해서는 전에 입력했던 플러그의 개수에서 하나를 쓰게 되므로 마지막 플러그 개수의 입력이 아닌 이상 하나를 빼고 개수를 셌다.
댓글남기기