結果

問題 No.2092 Conjugation
ユーザー apierceapierce
提出日時 2022-10-29 19:23:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 35 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-07-06 16:30:58
合計ジャッジ時間 3,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
12,416 KB
testcase_01 AC 71 ms
12,288 KB
testcase_02 AC 70 ms
12,288 KB
testcase_03 AC 70 ms
12,416 KB
testcase_04 AC 70 ms
12,160 KB
testcase_05 AC 69 ms
12,288 KB
testcase_06 AC 70 ms
12,416 KB
testcase_07 AC 111 ms
13,440 KB
testcase_08 AC 147 ms
19,584 KB
testcase_09 AC 131 ms
15,616 KB
testcase_10 AC 129 ms
16,000 KB
testcase_11 AC 132 ms
16,000 KB
testcase_12 AC 125 ms
15,360 KB
testcase_13 AC 115 ms
13,696 KB
testcase_14 AC 113 ms
13,824 KB
testcase_15 AC 129 ms
15,360 KB
testcase_16 AC 156 ms
21,760 KB
testcase_17 AC 163 ms
23,040 KB
testcase_18 AC 164 ms
22,784 KB
testcase_19 AC 105 ms
17,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

mx = a.max
arr = Array.new(mx+2, 0)

n.times do |i|
    arr[1] += 1
    arr[a[i]+1] -= 1
end

mx.times do |j|
    arr[j+1] += arr[j]
end
arr.shift
arr.pop
puts arr.join(" ")
0