結果

問題 No.4 おもりと天秤
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-03 10:17:47
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 1,174 bytes
コンパイル時間 9,314 ms
コンパイル使用メモリ 171,424 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-04-21 08:44:09
合計ジャッジ時間 18,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,464 KB
testcase_01 AC 59 ms
30,464 KB
testcase_02 AC 64 ms
31,488 KB
testcase_03 AC 59 ms
30,592 KB
testcase_04 AC 57 ms
30,464 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (86 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

namespace yukicoder
{
    public class Program
    {
        public static void Main()
        {
            var n = int.Parse(Console.ReadLine());
            var w = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
            var k = w.Sum();
            var c = true;
            if (k % 2 != 0)
            {
                Console.WriteLine("impossible");
            }
            else
            {
                var sum = new List<int>[n];
                sum[0] = new List<int> { 0, w[0] };
                for (var i = 1; i < n; i++)
                {
                    sum[i] = sum[i - 1].Select(x => x + w[i]).Where(x => x <= k / 2).ToList();
                    if (sum[i].Any(x => x == k / 2))
                    {
                        Console.WriteLine("possible");
                        c = false;
                        break;
                    }
                    sum[i].AddRange(sum[i-1]);
                }
                if (c)
                {
                    Console.WriteLine("impossible");
                }
            }
        }
    }
}
0