結果

問題 No.545 ママの大事な二人の子供
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-06-14 23:51:35
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,008 bytes
コンパイル時間 911 ms
コンパイル使用メモリ 113,092 KB
実行使用メモリ 439,848 KB
最終ジャッジ日時 2024-06-30 14:37:33
合計ジャッジ時間 7,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
33,864 KB
testcase_01 AC 36 ms
26,532 KB
testcase_02 AC 36 ms
28,840 KB
testcase_03 AC 37 ms
26,416 KB
testcase_04 AC 36 ms
26,660 KB
testcase_05 AC 36 ms
26,800 KB
testcase_06 AC 36 ms
26,400 KB
testcase_07 AC 37 ms
26,528 KB
testcase_08 AC 37 ms
26,292 KB
testcase_09 AC 36 ms
26,656 KB
testcase_10 AC 36 ms
26,300 KB
testcase_11 AC 37 ms
26,664 KB
testcase_12 AC 37 ms
26,636 KB
testcase_13 AC 39 ms
25,140 KB
testcase_14 AC 42 ms
28,596 KB
testcase_15 AC 37 ms
28,552 KB
testcase_16 AC 49 ms
33,260 KB
testcase_17 AC 98 ms
46,800 KB
testcase_18 AC 1,563 ms
242,008 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Text;
using System.Threading.Tasks;

namespace _545
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var inputs = Enumerable.Range(0, n).Select(_ =>
            {
                var line = Console.ReadLine().Split().Select(long.Parse).ToList();
                return Tuple.Create(line[0], line[1]);
            }).ToList();

            var diffs = new HashSet<long>() { 0 };
            foreach (var input in inputs)
            {
                var nexts = new HashSet<long>();
                foreach (var diff in diffs)
                {
                    nexts.Add(diff + input.Item1);
                    nexts.Add(diff - input.Item2);
                }
                diffs = nexts;
            }

            var answer = Math.Abs(diffs.Min(diff => Math.Abs(diff)));
            Console.WriteLine(answer);
        }
    }
}
0