結果

問題 No.1135 RPN
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-18 15:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 4,503 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 41,212 KB
最終ジャッジ日時 2024-11-16 18:43:42
合計ジャッジ時間 6,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,556 KB
testcase_01 AC 115 ms
41,172 KB
testcase_02 AC 125 ms
41,192 KB
testcase_03 AC 122 ms
41,112 KB
testcase_04 AC 112 ms
40,252 KB
testcase_05 AC 107 ms
40,024 KB
testcase_06 AC 114 ms
40,296 KB
testcase_07 AC 113 ms
41,112 KB
testcase_08 AC 114 ms
41,212 KB
testcase_09 AC 114 ms
41,056 KB
testcase_10 AC 111 ms
40,244 KB
testcase_11 AC 104 ms
40,156 KB
testcase_12 AC 114 ms
40,488 KB
testcase_13 AC 127 ms
41,124 KB
testcase_14 AC 123 ms
40,612 KB
testcase_15 AC 96 ms
40,036 KB
testcase_16 AC 98 ms
39,824 KB
testcase_17 AC 110 ms
41,084 KB
testcase_18 AC 98 ms
39,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Stack;


public class HelloWorld {
		public static void main (String[] args) {
			Scanner sc = new Scanner(System.in);
			int n = Integer.parseInt(sc.nextLine());
			String[] strs = sc.nextLine().split(" ");
			sc.close();

			Stack<Integer> stack = new Stack<Integer>();
			for (String str : strs) {
				if (str.equals("+")) {
					stack.push(stack.pop() + stack.pop());
				}
				else if (str.equals("-")) {
					stack.push(-stack.pop() + stack.pop());
				}
				else {
					stack.push(Integer.parseInt(str));
				}
			}
			System.out.println(stack.pop());


	}
}
0