結果

問題 No.1619 Coccinellidae
ユーザー kakel-sankakel-san
提出日時 2021-07-22 22:21:15
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,002 bytes
コンパイル時間 1,588 ms
コンパイル使用メモリ 106,496 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-07-17 18:23:58
合計ジャッジ時間 5,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
19,840 KB
testcase_01 WA -
testcase_02 AC 58 ms
27,520 KB
testcase_03 AC 28 ms
19,456 KB
testcase_04 WA -
testcase_05 AC 47 ms
23,040 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 47 ms
24,960 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 51 ms
25,856 KB
testcase_12 AC 29 ms
19,200 KB
testcase_13 WA -
testcase_14 AC 55 ms
25,856 KB
testcase_15 AC 30 ms
19,584 KB
testcase_16 AC 28 ms
19,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using static System.Console;
using System.Linq;

class yuki1
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var c = ReadLine().Split();
        var n = int.Parse(c[0]);
        var m = long.Parse(c[1]);
        var k = long.Parse(c[2]);

        var rlist = new HashSet<int>();
        var tmp = k;
        for (var i = n - 1; i >= 0; --i)
        {
            if (tmp > 0 && tmp >= i)
            {
                rlist.Add(n - i);
                tmp -= i;
            }
        }
        var list = new List<long>(n);
        for (var i = 1; i <= n; ++i)
        {
            if (!rlist.Contains(i)) list.Add(i);
        }
        list[list.Count - 1] += m - (long)n * (n + 1) / 2;
        for (var i = n; i > 0; --i)
        {
            if (rlist.Contains(i)) list.Add(i);
        }
        WriteLine(string.Join("\n", list));
    }
}
0