結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー Raysphere24Raysphere24
提出日時 2022-08-29 20:27:39
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 6,671 ms
コンパイル使用メモリ 166,460 KB
実行使用メモリ 189,064 KB
最終ジャッジ日時 2024-04-24 10:26:50
合計ジャッジ時間 10,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
30,720 KB
testcase_01 AC 53 ms
30,592 KB
testcase_02 AC 147 ms
63,232 KB
testcase_03 AC 50 ms
30,704 KB
testcase_04 AC 141 ms
63,104 KB
testcase_05 AC 142 ms
62,848 KB
testcase_06 AC 143 ms
62,848 KB
testcase_07 AC 107 ms
40,192 KB
testcase_08 AC 135 ms
57,440 KB
testcase_09 AC 117 ms
48,896 KB
testcase_10 AC 116 ms
45,056 KB
testcase_11 AC 110 ms
44,288 KB
testcase_12 AC 111 ms
43,648 KB
testcase_13 AC 60 ms
37,632 KB
testcase_14 AC 53 ms
33,408 KB
testcase_15 AC 120 ms
51,064 KB
testcase_16 AC 114 ms
46,080 KB
testcase_17 AC 52 ms
30,976 KB
testcase_18 AC 49 ms
30,848 KB
testcase_19 AC 50 ms
30,840 KB
testcase_20 AC 50 ms
30,968 KB
testcase_21 AC 50 ms
30,720 KB
testcase_22 AC 119 ms
47,612 KB
testcase_23 AC 63 ms
39,808 KB
testcase_24 AC 55 ms
33,536 KB
testcase_25 AC 124 ms
50,432 KB
testcase_26 AC 57 ms
189,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (91 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.Collections.Generic;

using static System.Console;
using static System.Linq.Enumerable;

var (N, S) = Util.ReadLongs();

List<long> ans = new();
HashSet<long> visited = new();

bool Search(long n, long s)
{
	if (n == 0) return s == 0;
	if (s < 0) return false;

	if (!visited.Add(N * s + n)) return false;

	if (Search(n - 1, s - n)) {
		ans.Add(n);
		return true;
	}

	return Search(n - 1, s);
}

if (Search(N, S)) {
	WriteLine(ans.Count);
	WriteLine(string.Join(' ', ans));
}
else {
	WriteLine("Impossible");
}

static class Util
{
	public static int[] ReadInts() => ReadLine()!.Split().Select(int.Parse).ToArray();
	public static long[] ReadLongs() => ReadLine()!.Split().Select(long.Parse).ToArray();
	public static void Deconstruct<T>(this T[] v, out T a, out T b) { a = v[0]; b = v[1]; }
}
0