結果

問題 No.545 ママの大事な二人の子供
ユーザー mbanmban
提出日時 2017-07-14 22:39:45
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,015 bytes
コンパイル時間 911 ms
コンパイル使用メモリ 115,572 KB
実行使用メモリ 30,924 KB
最終ジャッジ日時 2024-10-07 23:41:04
合計ジャッジ時間 6,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
30,924 KB
testcase_01 AC 25 ms
24,088 KB
testcase_02 AC 25 ms
25,896 KB
testcase_03 AC 25 ms
24,352 KB
testcase_04 AC 26 ms
26,012 KB
testcase_05 AC 25 ms
24,156 KB
testcase_06 AC 24 ms
24,292 KB
testcase_07 AC 24 ms
24,164 KB
testcase_08 AC 24 ms
21,940 KB
testcase_09 AC 25 ms
25,888 KB
testcase_10 AC 25 ms
24,096 KB
testcase_11 AC 25 ms
25,888 KB
testcase_12 AC 27 ms
26,068 KB
testcase_13 AC 26 ms
26,072 KB
testcase_14 AC 25 ms
24,240 KB
testcase_15 AC 25 ms
26,276 KB
testcase_16 AC 24 ms
23,900 KB
testcase_17 AC 27 ms
23,776 KB
testcase_18 AC 66 ms
22,068 KB
testcase_19 AC 182 ms
24,112 KB
testcase_20 AC 648 ms
24,032 KB
testcase_21 AC 24 ms
21,936 KB
testcase_22 TLE -
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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main()
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N;
    private int[] A, B;
    private void Scan()
    {
        N = int.Parse(Console.ReadLine());
        A = new int[N];
        B = new int[N];
        for (int i = 0; i < N; i++)
        {
            var line = Console.ReadLine().Split(' ');
            A[i] = int.Parse(line[0]);
            B[i] = int.Parse(line[1]);
        }
    }

    private long DFS(long aa,long bb,int n)
    {
        if(n == N)
        {
            return Math.Abs(aa - bb);
        }
        long a = DFS(aa + A[n], bb, n + 1);
        long b = DFS(aa, bb + B[n], n + 1);
        return Math.Min(a , b);
    }

    public void Solve()
    {
        Scan();
        Console.WriteLine(DFS(0, 0, 0));
    }
}
0