結果
問題 | No.49 算数の宿題 |
ユーザー | No |
提出日時 | 2015-06-16 00:47:45 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 21 ms / 5,000 ms |
コード長 | 1,696 bytes |
コンパイル時間 | 751 ms |
コンパイル使用メモリ | 112,412 KB |
実行使用メモリ | 25,936 KB |
最終ジャッジ日時 | 2024-06-02 07:10:16 |
合計ジャッジ時間 | 1,470 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
23,476 KB |
testcase_01 | AC | 20 ms
25,808 KB |
testcase_02 | AC | 19 ms
19,388 KB |
testcase_03 | AC | 20 ms
23,896 KB |
testcase_04 | AC | 21 ms
23,768 KB |
testcase_05 | AC | 21 ms
23,772 KB |
testcase_06 | AC | 20 ms
24,028 KB |
testcase_07 | AC | 21 ms
25,936 KB |
testcase_08 | AC | 20 ms
25,808 KB |
testcase_09 | AC | 19 ms
23,640 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace foryuki { class Program { static void Main(string[] args) { var c = Console.ReadLine().ToCharArray(); string s = ""; bool isAdd = true; int ans = 0; int i = 0; while (true) { s = ""; while (i < c.Length && char.IsNumber(c[i])) { s += c[i]; i++; } if (isAdd) { ans = ans + int.Parse(s); } else { ans = ans * int.Parse(s); } if (i >= c.Length) { break; } if (c[i] == '*') { isAdd = true; i++; } else { isAdd = false; i++; } } Console.WriteLine(ans); } //------------------------------------------------------------- static int[] ConvertStringArrayToIntArray(string[] array) { return Array.ConvertAll(array, str => int.Parse(str)); } static List<int> ConvertStringArrayToIntList(string[] str) { var list = new List<int>(); foreach (var c in str) { list.Add(int.Parse(c)); } return list; } } }