結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー bluemeganebluemegane
提出日時 2022-08-05 22:33:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 105,216 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-09-15 19:47:26
合計ジャッジ時間 5,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,944 KB
testcase_01 AC 27 ms
18,816 KB
testcase_02 AC 67 ms
27,392 KB
testcase_03 AC 26 ms
18,944 KB
testcase_04 AC 70 ms
28,288 KB
testcase_05 AC 70 ms
28,160 KB
testcase_06 AC 70 ms
28,288 KB
testcase_07 AC 41 ms
21,760 KB
testcase_08 AC 65 ms
27,392 KB
testcase_09 AC 41 ms
21,760 KB
testcase_10 AC 51 ms
24,576 KB
testcase_11 AC 44 ms
22,656 KB
testcase_12 AC 47 ms
23,424 KB
testcase_13 AC 38 ms
20,992 KB
testcase_14 AC 32 ms
19,416 KB
testcase_15 AC 49 ms
24,064 KB
testcase_16 AC 52 ms
24,832 KB
testcase_17 AC 28 ms
18,944 KB
testcase_18 AC 28 ms
18,816 KB
testcase_19 AC 28 ms
19,072 KB
testcase_20 AC 28 ms
18,816 KB
testcase_21 AC 27 ms
18,944 KB
testcase_22 AC 52 ms
25,216 KB
testcase_23 AC 40 ms
21,888 KB
testcase_24 AC 31 ms
19,528 KB
testcase_25 AC 56 ms
25,984 KB
testcase_26 AC 34 ms
20,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = long.Parse(line[0]);
        var s = long.Parse(line[1]);
        getAns(n, s);
    }
    static void getAns(long n, long s)
    {
        long w = 0;
        for (long i = 1; i <= n; i++)
        {
            w += i;
            if (w == s)
            {
                Console.WriteLine(i);
                Console.WriteLine(string.Join(" ", Enumerable.Range(1, (int)i)));
                return;
            }
            if (w > s)
            {
                var d = w - s;
                var ans = Enumerable.Range(1, (int)i).ToList();
                ans.Remove((int)d);
                Console.WriteLine(i - 1);
                Console.WriteLine(string.Join(" ", ans));
                return;
            }
        }
    }
}
0