結果

問題 No.49 算数の宿題
ユーザー nanophoto12nanophoto12
提出日時 2014-11-05 01:38:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 1,173 bytes
コンパイル時間 2,490 ms
コンパイル使用メモリ 110,976 KB
実行使用メモリ 24,900 KB
最終ジャッジ日時 2024-06-02 07:07:48
合計ジャッジ時間 3,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,728 KB
testcase_01 AC 25 ms
24,772 KB
testcase_02 AC 25 ms
24,852 KB
testcase_03 AC 25 ms
24,600 KB
testcase_04 AC 24 ms
24,900 KB
testcase_05 AC 25 ms
24,772 KB
testcase_06 AC 24 ms
24,604 KB
testcase_07 AC 24 ms
22,836 KB
testcase_08 AC 26 ms
24,724 KB
testcase_09 AC 25 ms
24,640 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;

internal class Program
{
    public static void Main(string[] args)
    {
        var s = Console.ReadLine();
        List<string> parsing = new List<string>();
        List<char> token = new List<char>();

        int prev = 0;
        for (int i = 0; i < s.Length; i++)
        {
            if (s[i] == '*' || s[i] == '+')
            {
                parsing.Add(s.Substring(prev, i - prev));
                token.Add(s[i]);
                prev = i + 1;
            }
        }
        if (token.Count == 0)
        {
            Console.WriteLine(s);
            return;
        }
        parsing.Add(s.Substring(prev, s.Length - prev));
        int[] nums = parsing.Select(int.Parse).ToArray();

        var current = nums[0];
        for (int i = 1; i < nums.Length; i++)
        {
            if (token[i - 1] == '*')
            {
                current = current + nums[i];
            }
            else
            {
                current = current * nums[i];                
            }
        }
        Console.WriteLine(current);
    }
}
0