結果

問題 No.1135 RPN
ユーザー face4face4
提出日時 2020-08-04 21:51:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 2,918 ms
コンパイル使用メモリ 75,076 KB
実行使用メモリ 37,236 KB
最終ジャッジ日時 2024-09-14 21:19:52
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,208 KB
testcase_01 AC 54 ms
37,200 KB
testcase_02 AC 55 ms
37,228 KB
testcase_03 AC 55 ms
37,160 KB
testcase_04 AC 56 ms
37,000 KB
testcase_05 AC 53 ms
36,548 KB
testcase_06 AC 56 ms
37,012 KB
testcase_07 AC 54 ms
36,984 KB
testcase_08 AC 55 ms
37,012 KB
testcase_09 AC 53 ms
37,236 KB
testcase_10 AC 56 ms
37,064 KB
testcase_11 AC 55 ms
37,016 KB
testcase_12 AC 57 ms
37,220 KB
testcase_13 AC 56 ms
37,032 KB
testcase_14 AC 56 ms
37,000 KB
testcase_15 AC 53 ms
36,696 KB
testcase_16 AC 53 ms
36,692 KB
testcase_17 AC 55 ms
36,832 KB
testcase_18 AC 55 ms
36,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Stack;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        String[] line = br.readLine().split(" ");
        Stack<Integer> s = new Stack<Integer>();
        for(int i = 0; i < n; i++){
            if(line[i].equals("+")){
                s.push(s.pop()+s.pop());
            }else if(line[i].equals("-")){
                s.push(-s.pop()+s.pop());
            }else{
                s.push(Integer.parseInt(line[i]));
            }
        }
        System.out.println(s.peek());
    }
}
0