結果
問題 |
No.4 おもりと天秤
|
ユーザー |
|
提出日時 | 2023-08-03 10:17:47 |
言語 | C# (.NET 8.0.404) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,174 bytes |
コンパイル時間 | 12,992 ms |
コンパイル使用メモリ | 169,288 KB |
実行使用メモリ | 164,344 KB |
最終ジャッジ日時 | 2024-10-13 07:36:22 |
合計ジャッジ時間 | 21,327 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 TLE * 1 -- * 17 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (93 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/
ソースコード
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"); } } } } }