結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー simansiman
提出日時 2020-10-22 19:21:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-07-21 09:26:13
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 164 ms
19,968 KB
testcase_03 AC 103 ms
12,544 KB
testcase_04 AC 177 ms
20,096 KB
testcase_05 AC 99 ms
12,416 KB
testcase_06 AC 195 ms
23,168 KB
testcase_07 AC 144 ms
16,384 KB
testcase_08 AC 197 ms
23,680 KB
testcase_09 AC 146 ms
16,512 KB
testcase_10 AC 165 ms
19,840 KB
testcase_11 AC 201 ms
23,808 KB
testcase_12 AC 149 ms
16,768 KB
testcase_13 AC 150 ms
16,640 KB
testcase_14 AC 191 ms
22,912 KB
testcase_15 AC 173 ms
19,968 KB
testcase_16 AC 127 ms
15,616 KB
testcase_17 AC 96 ms
12,288 KB
testcase_18 AC 129 ms
15,744 KB
testcase_19 AC 145 ms
16,512 KB
testcase_20 AC 136 ms
16,640 KB
testcase_21 AC 151 ms
16,768 KB
testcase_22 AC 92 ms
12,160 KB
testcase_23 AC 92 ms
12,160 KB
testcase_24 AC 206 ms
24,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, D = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
B = [0]
A.each do |a|
  B << B.last + a
end

pos = 0
ans = [0]

B[1..-1].each do |b|
  np = pos + D

  if np <= b
    ans << b
    pos = b
  else
    ans << np
    pos = np
  end
end

puts ans.join(' ')
0