結果

問題 No.222 引き算と足し算
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-28 17:01:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 1,208 bytes
コンパイル時間 1,368 ms
コンパイル使用メモリ 113,640 KB
実行使用メモリ 25,808 KB
最終ジャッジ日時 2024-06-09 12:13:13
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,908 KB
testcase_01 AC 23 ms
23,488 KB
testcase_02 AC 23 ms
23,984 KB
testcase_03 AC 24 ms
23,904 KB
testcase_04 AC 24 ms
23,496 KB
testcase_05 AC 23 ms
23,892 KB
testcase_06 AC 25 ms
23,656 KB
testcase_07 AC 23 ms
23,504 KB
testcase_08 AC 24 ms
23,404 KB
testcase_09 AC 24 ms
23,632 KB
testcase_10 AC 23 ms
23,780 KB
testcase_11 AC 24 ms
23,764 KB
testcase_12 AC 23 ms
23,652 KB
testcase_13 AC 25 ms
25,568 KB
testcase_14 AC 24 ms
23,412 KB
testcase_15 AC 24 ms
25,552 KB
testcase_16 AC 24 ms
25,692 KB
testcase_17 AC 24 ms
23,528 KB
testcase_18 AC 24 ms
23,768 KB
testcase_19 AC 25 ms
25,796 KB
testcase_20 AC 23 ms
23,524 KB
testcase_21 AC 22 ms
23,392 KB
testcase_22 AC 23 ms
23,636 KB
testcase_23 AC 23 ms
25,436 KB
testcase_24 AC 23 ms
23,272 KB
testcase_25 AC 23 ms
25,680 KB
testcase_26 AC 24 ms
23,764 KB
testcase_27 AC 24 ms
23,652 KB
testcase_28 AC 24 ms
23,656 KB
testcase_29 AC 23 ms
23,524 KB
testcase_30 AC 24 ms
23,656 KB
testcase_31 AC 24 ms
23,652 KB
testcase_32 AC 24 ms
25,808 KB
testcase_33 AC 24 ms
25,804 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;
using System.Numerics;

namespace yukicoder
{
    public class Program
    {
        public static void Main()
        {
            var x = Console.ReadLine();
            var c = false;
            var d = false;
            var f = new string[3];
            for(var i = 0; i < x.Length; i++)
            {
                var k = x[i] - '0';
                if (k >= 0 && k <= 9)
                {
                    c = true;
                }
                if (c && (x[i] == '+' || x[i] == '-') && !d)
                {
                    f[1] += x[i];
                    d = true;
                }
                else if (!d)
                {
                    f[0] += x[i];
                }
                else
                {
                    f[2] += x[i];
                }
            }
            switch (f[1])
            {
                case "+":
                    Console.WriteLine(int.Parse(f[0]) - int.Parse(f[2]));
                    break;
                case "-":
                    Console.WriteLine(int.Parse(f[0]) + int.Parse(f[2]));
                    break;
            }
        }
    }
}
0