結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー shi-moshi-mo
提出日時 2020-09-29 00:45:39
言語 Ruby
(3.3.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-07-02 23:15:58
合計ジャッジ時間 5,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,032 KB
testcase_01 AC 96 ms
12,160 KB
testcase_02 AC 161 ms
19,072 KB
testcase_03 AC 104 ms
12,672 KB
testcase_04 AC 167 ms
19,456 KB
testcase_05 AC 97 ms
12,416 KB
testcase_06 AC 183 ms
22,272 KB
testcase_07 AC 143 ms
16,000 KB
testcase_08 AC 191 ms
22,656 KB
testcase_09 AC 144 ms
16,000 KB
testcase_10 AC 158 ms
19,072 KB
testcase_11 AC 192 ms
23,168 KB
testcase_12 AC 147 ms
16,128 KB
testcase_13 AC 146 ms
16,256 KB
testcase_14 AC 184 ms
21,888 KB
testcase_15 AC 166 ms
19,456 KB
testcase_16 AC 123 ms
15,232 KB
testcase_17 AC 92 ms
12,160 KB
testcase_18 AC 122 ms
15,360 KB
testcase_19 AC 140 ms
16,128 KB
testcase_20 AC 133 ms
15,872 KB
testcase_21 AC 144 ms
16,256 KB
testcase_22 AC 90 ms
12,160 KB
testcase_23 AC 90 ms
12,288 KB
testcase_24 AC 192 ms
23,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, d = gets.split.map(&:to_i)
a = gets.chomp.split.map(&:to_i)
x = [0]
(n-1).times do |i|
  if d <= a[i]
    x << x[i] + a[i]
    next
  end
  a[i+1] -= (d - a[i]) if i < (n-2)
  x << x[i] + d
end
puts x.join(' ')
0