結果
問題 | No.49 算数の宿題 |
ユーザー | bluemegane |
提出日時 | 2018-10-08 09:45:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 5,000 ms |
コード長 | 639 bytes |
コンパイル時間 | 937 ms |
コンパイル使用メモリ | 113,488 KB |
実行使用メモリ | 25,640 KB |
最終ジャッジ日時 | 2024-06-02 07:22:56 |
合計ジャッジ時間 | 1,450 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
25,640 KB |
testcase_01 | AC | 23 ms
25,640 KB |
testcase_02 | AC | 23 ms
24,112 KB |
testcase_03 | AC | 22 ms
23,984 KB |
testcase_04 | AC | 22 ms
23,728 KB |
testcase_05 | AC | 22 ms
23,972 KB |
testcase_06 | AC | 22 ms
23,860 KB |
testcase_07 | AC | 23 ms
23,724 KB |
testcase_08 | AC | 22 ms
21,684 KB |
testcase_09 | AC | 22 ms
23,684 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Collections.Generic; using System; public class Hello { public static void Main() { var s = Console.ReadLine().Trim(); string[] line = s.Split('*', '+'); var a = Array.ConvertAll(line, int.Parse); var b = new List<char>(); foreach (var x in s) if (x == '+') b.Add('m'); else if (x == '*') b.Add('p'); int ans; if (b[0] == 'm') ans = a[0] * a[1]; else ans = a[0] + a[1]; for (int i = 2; i < a.Length; i++) if (b[i - 1] == 'm') ans *= a[i]; else ans += a[i]; Console.WriteLine(ans); } }