結果

問題 No.49 算数の宿題
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 21:54:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 1,468 bytes
コンパイル時間 1,296 ms
コンパイル使用メモリ 113,440 KB
実行使用メモリ 27,432 KB
最終ジャッジ日時 2024-10-10 21:55:01
合計ジャッジ時間 1,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,232 KB
testcase_01 AC 29 ms
25,004 KB
testcase_02 AC 30 ms
27,176 KB
testcase_03 AC 29 ms
23,096 KB
testcase_04 AC 30 ms
25,256 KB
testcase_05 AC 29 ms
25,008 KB
testcase_06 AC 29 ms
27,432 KB
testcase_07 AC 30 ms
23,100 KB
testcase_08 AC 29 ms
25,004 KB
testcase_09 AC 29 ms
23,092 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("2*3");
            //5
            //太郎君の国では、記号'*'は足し算を表します。
            //2と3を足して5が解になります
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("6*7+2");
            //26
            //我々の世界の表記に直すと 6+7×2ですが、
            //優先度が無いため6と7を足してから2を掛けます
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("2497*3+4");
            //10000
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        string S = InputList[0];
        int[] ValArr = S.Split('+', '*').Select(X => int.Parse(X)).ToArray();

        int AppearOpeCnt = 0;
        int Answer = ValArr[0];
        foreach (char EachChar in S) {
            if (EachChar == '+') Answer *= ValArr[++AppearOpeCnt];
            if (EachChar == '*') Answer += ValArr[++AppearOpeCnt];
        }
        Console.WriteLine(Answer);
    }
}

0