結果

問題 No.4 おもりと天秤
ユーザー HimatsubushinHimatsubushin
提出日時 2019-01-23 12:27:05
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,056 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 112,160 KB
実行使用メモリ 27,424 KB
最終ジャッジ日時 2024-09-16 04:21:29
合計ジャッジ時間 2,277 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,008 KB
testcase_01 AC 27 ms
24,740 KB
testcase_02 AC 28 ms
25,096 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 28 ms
25,136 KB
testcase_07 WA -
testcase_08 AC 28 ms
27,136 KB
testcase_09 AC 28 ms
24,948 KB
testcase_10 AC 27 ms
25,260 KB
testcase_11 AC 27 ms
25,136 KB
testcase_12 AC 27 ms
24,748 KB
testcase_13 AC 27 ms
25,124 KB
testcase_14 AC 27 ms
25,096 KB
testcase_15 AC 28 ms
27,264 KB
testcase_16 WA -
testcase_17 AC 27 ms
25,256 KB
testcase_18 AC 28 ms
24,872 KB
testcase_19 AC 28 ms
27,008 KB
testcase_20 AC 27 ms
27,004 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace No004_おもりと天秤
{
    class Program
    {
        static private int N;
        static private int[] W;
        static private int AllSum;

        static void Main(string[] args)
        {
            N = int.Parse(Console.ReadLine());
            string[] input = Console.ReadLine().Split(' ');
            W = input.Select(int.Parse).ToArray();

            AllSum = 0;
            foreach (int a in W)
                AllSum += a;

            for (int i = 0; i < N; i++)
                Count(i, 0);

            Count(0, 0);

            if (AllSum == -1)
                Console.WriteLine("possible");
            else
                Console.WriteLine("impossible");
        }

        static void Count(int level, int sum)
        {
            sum += W[level];

            if (AllSum - sum == sum)
            {
                AllSum = -1;
            }
            else if (AllSum != -1 && level < N - 1)
            {
                Count(level + 1, sum);
            }
        }
    }
}
0