結果

問題 No.1135 RPN
ユーザー RISE70226821RISE70226821
提出日時 2020-07-31 18:21:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 78,600 KB
実行使用メモリ 42,176 KB
最終ジャッジ日時 2024-07-06 13:38:45
合計ジャッジ時間 5,346 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
42,176 KB
testcase_01 AC 115 ms
41,084 KB
testcase_02 AC 134 ms
41,544 KB
testcase_03 AC 129 ms
41,820 KB
testcase_04 AC 139 ms
41,760 KB
testcase_05 AC 120 ms
41,780 KB
testcase_06 AC 149 ms
41,576 KB
testcase_07 AC 114 ms
41,124 KB
testcase_08 AC 113 ms
41,068 KB
testcase_09 AC 119 ms
41,556 KB
testcase_10 AC 136 ms
41,472 KB
testcase_11 AC 122 ms
41,560 KB
testcase_12 AC 140 ms
41,732 KB
testcase_13 AC 141 ms
41,668 KB
testcase_14 AC 141 ms
41,860 KB
testcase_15 AC 96 ms
39,700 KB
testcase_16 AC 106 ms
40,964 KB
testcase_17 AC 94 ms
39,316 KB
testcase_18 AC 102 ms
40,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		String[] A = new String[N];
		for(int i = 0; i < N; i++){
			A[i] = sc.next();
		}
		
		// 計算
		List<Integer> list = new ArrayList<>();
		for(int i = 0; i < N; i++){
			String str = A[i];
			int n = list.size();
			if(str.equals("+")){
				int tmp = list.get(n-2) + list.get(n-1);
				list.remove(n-1);
				list.remove(n-2);
				list.add(tmp);
			}
			else if(str.equals("-")){
				int tmp = list.get(n-2) - list.get(n-1);
				list.remove(n-1);
				list.remove(n-2);
				list.add(tmp);
			}
			else{
				list.add(Integer.parseInt(str));
			}
		}
		
		
		// 出力
		System.out.println(list.get(0));
	}

}
0