結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー bluemeganebluemegane
提出日時 2020-06-24 13:26:13
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 1,117 ms
コンパイル使用メモリ 111,040 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-07-03 20:07:10
合計ジャッジ時間 3,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,984 KB
testcase_01 AC 26 ms
26,340 KB
testcase_02 AC 63 ms
35,040 KB
testcase_03 AC 35 ms
27,288 KB
testcase_04 AC 70 ms
38,660 KB
testcase_05 AC 33 ms
24,696 KB
testcase_06 AC 78 ms
38,420 KB
testcase_07 AC 51 ms
28,976 KB
testcase_08 AC 79 ms
38,464 KB
testcase_09 AC 52 ms
31,348 KB
testcase_10 AC 62 ms
36,792 KB
testcase_11 AC 81 ms
36,892 KB
testcase_12 AC 54 ms
31,680 KB
testcase_13 AC 53 ms
29,496 KB
testcase_14 AC 77 ms
37,732 KB
testcase_15 AC 68 ms
35,996 KB
testcase_16 AC 43 ms
27,584 KB
testcase_17 AC 31 ms
24,728 KB
testcase_18 AC 45 ms
29,696 KB
testcase_19 AC 51 ms
29,524 KB
testcase_20 AC 49 ms
28,920 KB
testcase_21 AC 53 ms
29,252 KB
testcase_22 AC 26 ms
24,040 KB
testcase_23 AC 25 ms
24,172 KB
testcase_24 AC 82 ms
41,604 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var d = int.Parse(line[1]);
         line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, d, a);
    }
    static void getAns (int n,int d, int[] a)
    {
        var res = new int[n];
        res[0] = 0;
       var now = 0;
        for (int i = 0; i < n-1; i++)
        {
            now += a[i];
            res[i + 1]  = Max(now, res[i] + d);
        }
        Console.WriteLine(string.Join(" ",res));
    }
}
0