結果

問題 No.1135 RPN
ユーザー tentententen
提出日時 2020-08-17 22:01:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 75,412 KB
実行使用メモリ 42,276 KB
最終ジャッジ日時 2024-10-11 11:21:39
合計ジャッジ時間 6,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
41,896 KB
testcase_01 AC 141 ms
40,984 KB
testcase_02 AC 171 ms
41,584 KB
testcase_03 AC 176 ms
42,084 KB
testcase_04 AC 181 ms
42,064 KB
testcase_05 AC 139 ms
41,436 KB
testcase_06 AC 177 ms
41,888 KB
testcase_07 AC 129 ms
41,336 KB
testcase_08 AC 126 ms
40,416 KB
testcase_09 AC 146 ms
41,520 KB
testcase_10 AC 177 ms
41,744 KB
testcase_11 AC 140 ms
41,036 KB
testcase_12 AC 176 ms
41,904 KB
testcase_13 AC 163 ms
41,496 KB
testcase_14 AC 174 ms
42,276 KB
testcase_15 AC 116 ms
40,044 KB
testcase_16 AC 115 ms
39,884 KB
testcase_17 AC 135 ms
41,096 KB
testcase_18 AC 126 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayDeque<Integer> stack = new ArrayDeque<>();
		for (int i = 0; i < n; i++) {
		    String a = sc.next();
		    if (a.equals("+")) {
		        stack.push(stack.pop() + stack.pop());
		    } else if (a.equals("-")) {
		        stack.push(-stack.pop() + stack.pop());
		    } else {
		        stack.push(Integer.parseInt(a));
		    }
		}
		System.out.println(stack.pop());
	}
}
0