結果

問題 No.545 ママの大事な二人の子供
ユーザー NoNo
提出日時 2018-01-27 22:36:52
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
実行時間 -
コード長 852 bytes
コンパイル時間 1,010 ms
コンパイル使用メモリ 114,460 KB
実行使用メモリ 707,776 KB
最終ジャッジ日時 2024-12-29 07:07:04
合計ジャッジ時間 20,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
24,320 KB
testcase_01 MLE -
testcase_02 AC 31 ms
24,320 KB
testcase_03 MLE -
testcase_04 AC 32 ms
24,192 KB
testcase_05 MLE -
testcase_06 AC 31 ms
24,192 KB
testcase_07 MLE -
testcase_08 AC 33 ms
24,192 KB
testcase_09 AC 33 ms
19,072 KB
testcase_10 AC 31 ms
19,072 KB
testcase_11 AC 31 ms
19,072 KB
testcase_12 AC 32 ms
19,328 KB
testcase_13 AC 35 ms
20,660 KB
testcase_14 AC 36 ms
22,016 KB
testcase_15 AC 32 ms
19,328 KB
testcase_16 AC 47 ms
28,928 KB
testcase_17 AC 104 ms
44,416 KB
testcase_18 AC 1,487 ms
338,216 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 33 ms
18,944 KB
testcase_22 TLE -
testcase_23 RE -
testcase_24 RE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var li1 = new List<int[]>();
            li1.Add(new int[] { 0, 0 });

            for (int i = 0; i < n; i++)
            {
                var li2 = new List<int[]>();
                var num = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();
                foreach (var item in li1)
                {
                    li2.Add(new int[] { item[0] + num[0], item[1] });
                    li2.Add(new int[] { item[0], item[1] + num[1] });
                }
                li1 = li2;
            }

            var ans = li1.Min(x => Math.Abs( x[0] - x[1]));
            Console.WriteLine(ans);
        }
    }
}
0