結果

問題 No.836 じょうよ
ユーザー bluemeganebluemegane
提出日時 2021-04-17 18:33:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 990 bytes
コンパイル時間 837 ms
コンパイル使用メモリ 111,020 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-07-04 01:35:13
合計ジャッジ時間 3,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
25,088 KB
testcase_01 AC 23 ms
18,048 KB
testcase_02 AC 23 ms
18,048 KB
testcase_03 AC 23 ms
18,048 KB
testcase_04 AC 23 ms
17,792 KB
testcase_05 AC 22 ms
18,048 KB
testcase_06 AC 22 ms
17,920 KB
testcase_07 AC 22 ms
17,920 KB
testcase_08 AC 22 ms
17,920 KB
testcase_09 AC 22 ms
17,792 KB
testcase_10 AC 23 ms
17,920 KB
testcase_11 AC 24 ms
18,144 KB
testcase_12 AC 23 ms
18,384 KB
testcase_13 AC 21 ms
18,132 KB
testcase_14 AC 23 ms
17,920 KB
testcase_15 AC 25 ms
18,108 KB
testcase_16 AC 47 ms
26,496 KB
testcase_17 AC 46 ms
25,600 KB
testcase_18 AC 27 ms
18,092 KB
testcase_19 AC 29 ms
18,688 KB
testcase_20 AC 37 ms
22,272 KB
testcase_21 AC 24 ms
18,048 KB
testcase_22 AC 28 ms
18,688 KB
testcase_23 AC 32 ms
20,608 KB
testcase_24 AC 23 ms
18,048 KB
testcase_25 AC 26 ms
18,408 KB
testcase_26 AC 22 ms
17,920 KB
testcase_27 AC 21 ms
18,048 KB
testcase_28 AC 22 ms
17,904 KB
testcase_29 AC 22 ms
18,176 KB
testcase_30 AC 21 ms
17,792 KB
testcase_31 AC 23 ms
18,268 KB
testcase_32 AC 23 ms
18,048 KB
testcase_33 AC 21 ms
17,792 KB
testcase_34 AC 23 ms
18,160 KB
testcase_35 AC 22 ms
18,176 KB
testcase_36 AC 29 ms
19,328 KB
testcase_37 AC 29 ms
19,200 KB
testcase_38 AC 31 ms
20,096 KB
testcase_39 AC 28 ms
19,456 KB
testcase_40 AC 35 ms
21,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static long L, r;
    public static int n;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        L = long.Parse(line[0]);
        r = long.Parse(line[1]);
        n = int.Parse(line[2]);
        getAns();
    }
    static long[]  getArray (long t)
    {
        var res = new long[n];
        var w = t / n;
        for (int i = 0; i < n; i++) res[i] = w;
        var w2 = t % n;
        for (int i = 0; i < w2; i++)
        {
            var p = i + 1;
            if (p > n - 1) p -= n;
            res[p]++;
        }
        return res;
    }
    static void getAns ()
    {
        if (L == 1)
        {
            var aa = getArray(r);
            Console.WriteLine(string.Join("\n", aa));
            return;
        }
        var a1 = getArray(L-1);
        var a2 = getArray(r);
        for (int i = 0; i < n; i++) a2[i] -= a1[i];
        Console.WriteLine(string.Join("\n",a2));
    }
}
0