結果

問題 No.1135 RPN
ユーザー bluemeganebluemegane
提出日時 2020-09-08 14:17:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 107,396 KB
実行使用メモリ 26,792 KB
最終ジャッジ日時 2024-05-07 03:04:27
合計ジャッジ時間 2,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
26,780 KB
testcase_01 AC 24 ms
23,768 KB
testcase_02 AC 29 ms
26,520 KB
testcase_03 AC 29 ms
26,272 KB
testcase_04 AC 29 ms
24,280 KB
testcase_05 AC 30 ms
24,540 KB
testcase_06 AC 29 ms
24,156 KB
testcase_07 AC 27 ms
25,812 KB
testcase_08 AC 25 ms
21,936 KB
testcase_09 AC 29 ms
22,192 KB
testcase_10 AC 29 ms
24,536 KB
testcase_11 AC 31 ms
24,540 KB
testcase_12 AC 29 ms
26,792 KB
testcase_13 AC 29 ms
24,280 KB
testcase_14 AC 29 ms
24,028 KB
testcase_15 AC 25 ms
25,900 KB
testcase_16 AC 25 ms
24,028 KB
testcase_17 AC 25 ms
24,156 KB
testcase_18 AC 25 ms
23,772 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        getAns(n);
    }
    static void getAns(int n)
    {
        var st = new Stack<int>();
        string[] line = Console.ReadLine().Trim().Split(' ');
        for (int i = 0; i < n; i++)
        {
            if (line[i] == "+")
            {
                var w = st.Pop() + st.Pop();
                st.Push(w);
            }
            else if (line[i] == "-")
            {
                var w = -st.Pop() + st.Pop();
                st.Push(w);
            }
            else st.Push(int.Parse(line[i]));
        }
        Console.WriteLine(st.Pop());
    }
}
0