結果

問題 No.4 おもりと天秤
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-03 15:35:34
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,224 bytes
コンパイル時間 15,912 ms
コンパイル使用メモリ 166,896 KB
実行使用メモリ 188,536 KB
最終ジャッジ日時 2024-10-13 12:23:42
合計ジャッジ時間 18,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,592 KB
testcase_01 AC 55 ms
30,336 KB
testcase_02 AC 53 ms
30,436 KB
testcase_03 WA -
testcase_04 AC 55 ms
30,976 KB
testcase_05 AC 69 ms
32,000 KB
testcase_06 RE -
testcase_07 AC 70 ms
32,128 KB
testcase_08 AC 58 ms
30,580 KB
testcase_09 AC 66 ms
32,128 KB
testcase_10 AC 68 ms
32,128 KB
testcase_11 AC 54 ms
30,592 KB
testcase_12 AC 55 ms
30,560 KB
testcase_13 AC 55 ms
30,592 KB
testcase_14 AC 54 ms
30,620 KB
testcase_15 AC 54 ms
30,704 KB
testcase_16 WA -
testcase_17 AC 54 ms
30,592 KB
testcase_18 AC 67 ms
31,844 KB
testcase_19 AC 68 ms
31,872 KB
testcase_20 AC 68 ms
31,824 KB
testcase_21 AC 68 ms
31,872 KB
testcase_22 AC 69 ms
188,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (89 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 = new bool[n, k / 2 + 1];
            c[0, 0] = true;
            c[0, w[0]] = true;
            if (k % 2 != 0)
            {
                Console.WriteLine("impossible");
            }
            else
            {
                for (var i = 1; i < n; i++)
                {
                    for(var j = 0; j <= k / 2 ; j++)
                    {
                        if (c[i - 1, j] && j + w[i] <= k / 2 )
                        {
                            c[i, j + w[i]] = true;
                            c[i, j] = true;
                        }
                    }
                }
                if (c[n - 1, k / 2])
                {
                    Console.WriteLine("possible");
                }
                else
                {
                    Console.WriteLine("impossible");
                }
            }
        }
    }
}
0