結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー arito_asuarito_asu
提出日時 2020-07-01 18:07:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-09-14 02:26:34
合計ジャッジ時間 5,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 163 ms
19,328 KB
testcase_03 AC 99 ms
12,416 KB
testcase_04 AC 169 ms
19,456 KB
testcase_05 AC 95 ms
12,544 KB
testcase_06 AC 186 ms
22,016 KB
testcase_07 AC 140 ms
16,128 KB
testcase_08 AC 194 ms
22,528 KB
testcase_09 AC 143 ms
16,128 KB
testcase_10 AC 162 ms
19,200 KB
testcase_11 AC 198 ms
22,912 KB
testcase_12 AC 148 ms
16,128 KB
testcase_13 AC 146 ms
15,872 KB
testcase_14 AC 189 ms
22,144 KB
testcase_15 AC 169 ms
19,328 KB
testcase_16 AC 125 ms
15,232 KB
testcase_17 AC 92 ms
12,032 KB
testcase_18 AC 122 ms
15,232 KB
testcase_19 AC 139 ms
16,256 KB
testcase_20 AC 134 ms
16,128 KB
testcase_21 AC 148 ms
16,128 KB
testcase_22 AC 88 ms
12,160 KB
testcase_23 AC 88 ms
12,160 KB
testcase_24 AC 194 ms
23,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,d=gets.split.map(&:to_i)
a=gets.split.map(&:to_i)

ls = [0]

a.each{|x|ls << ls[-1] + x}

for i in 0..n-2 do
    dif = ls[i+1] - ls[i]
    if dif < d then
        ls[i+1] += (d-dif)
    end
end

puts ls.join(' ')
0