結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー kakel-sankakel-san
提出日時 2023-12-02 16:11:28
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,256 bytes
コンパイル時間 12,875 ms
コンパイル使用メモリ 167,128 KB
実行使用メモリ 185,180 KB
最終ジャッジ日時 2024-09-26 19:56:20
合計ジャッジ時間 10,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,832 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 195 ms
62,412 KB
testcase_07 AC 179 ms
62,416 KB
testcase_08 AC 181 ms
62,416 KB
testcase_09 AC 191 ms
62,464 KB
testcase_10 AC 185 ms
62,148 KB
testcase_11 AC 56 ms
30,720 KB
testcase_12 AC 58 ms
30,720 KB
testcase_13 AC 58 ms
31,104 KB
testcase_14 AC 54 ms
29,696 KB
testcase_15 AC 57 ms
30,848 KB
testcase_16 AC 57 ms
185,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new string[t];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (n, x) = (c[0], c[1]);
            ans[u] = Down(n, x);
        }
        WriteLine(string.Join("\n", ans));
    }
    static string Down(long n, long x)
    {
        if (x < n * (n + 1) / 2) return "-1";
        var ng = 0L;
        var ok = x;
        while (ok - ng > 1)
        {
            var mid = (ok + ng) / 2;
            if ((mid * 2 - n + 1) * n / 2 >= x) ok = mid;
            else ng = mid;
        }
        var sum = 0L;
        var ans = new long[n];
        for (var i = 0; i < n; ++i)
        {
            ans[i] = ok - i;
            sum += ok - i;
        }
        for (var i = n - 1; i >= 0; --i) if (sum > x)
        {
            --ans[i];
            --sum;
        }
        return string.Join(" ", ans);
    }
}
0