結果

問題 No.149 碁石の移動
ユーザー しらゆきしらゆき
提出日時 2015-11-20 09:46:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 103,680 KB
実行使用メモリ 27,128 KB
最終ジャッジ日時 2024-06-06 11:54:39
合計ジャッジ時間 3,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
27,128 KB
testcase_01 AC 23 ms
27,004 KB
testcase_02 AC 23 ms
25,016 KB
testcase_03 AC 25 ms
24,880 KB
testcase_04 AC 23 ms
24,880 KB
testcase_05 AC 23 ms
25,404 KB
testcase_06 AC 24 ms
25,020 KB
testcase_07 AC 23 ms
27,052 KB
testcase_08 AC 23 ms
26,872 KB
testcase_09 AC 25 ms
22,712 KB
testcase_10 AC 25 ms
25,088 KB
testcase_11 AC 23 ms
25,004 KB
testcase_12 AC 24 ms
25,208 KB
testcase_13 AC 22 ms
25,076 KB
testcase_14 AC 24 ms
24,888 KB
testcase_15 AC 25 ms
26,748 KB
testcase_16 AC 24 ms
26,808 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.Linq;

class Program
{
    static void Main()
    {
        int[] i = Console.ReadLine().Split().Select(int.Parse).ToArray();
        int[] j = Console.ReadLine().Split().Select(int.Parse).ToArray();
        int[] k = Console.ReadLine().Split().Select(int.Parse).ToArray();
        int aw = i[0];
        int ab = i[1];
        int bw = j[0];
        int bb = j[1];
        int c = k[0];
        int d = k[1];

        if (c > ab)
        {
            aw -= c - ab;
            bw += c - ab;
            bb += ab;
            ab = 0;
        }
        else
        {
            ab -= c;
            bb += c;
        }

        if (bw > d) aw += d;
        else aw += bw;

        Console.WriteLine(aw);
    }
}
0