結果

問題 No.1135 RPN
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-18 15:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 3,607 ms
コンパイル使用メモリ 79,280 KB
実行使用メモリ 41,904 KB
最終ジャッジ日時 2024-04-28 05:58:16
合計ジャッジ時間 7,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,636 KB
testcase_01 AC 127 ms
41,016 KB
testcase_02 AC 129 ms
40,272 KB
testcase_03 AC 141 ms
41,516 KB
testcase_04 AC 142 ms
41,588 KB
testcase_05 AC 132 ms
41,120 KB
testcase_06 AC 148 ms
41,684 KB
testcase_07 AC 130 ms
40,948 KB
testcase_08 AC 134 ms
41,172 KB
testcase_09 AC 137 ms
41,728 KB
testcase_10 AC 142 ms
41,904 KB
testcase_11 AC 131 ms
41,080 KB
testcase_12 AC 148 ms
41,616 KB
testcase_13 AC 147 ms
41,504 KB
testcase_14 AC 150 ms
41,352 KB
testcase_15 AC 132 ms
41,236 KB
testcase_16 AC 132 ms
41,516 KB
testcase_17 AC 130 ms
41,576 KB
testcase_18 AC 131 ms
41,128 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