結果
| 問題 |
No.4 おもりと天秤
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-08-03 09:53:48 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,127 bytes |
| コンパイル時間 | 12,399 ms |
| コンパイル使用メモリ | 172,952 KB |
| 実行使用メモリ | 191,280 KB |
| 最終ジャッジ日時 | 2024-10-13 07:18:43 |
| 合計ジャッジ時間 | 14,881 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 WA * 9 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /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/
ソースコード
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;
}
}
if (c)
{
Console.WriteLine("impossible");
}
}
}
}
}