結果

問題 No.1619 Coccinellidae
ユーザー yuruhiyayuruhiya
提出日時 2021-07-22 22:46:16
言語 Ruby
(3.4.1)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-07-17 19:09:57
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 161 ms
12,672 KB
testcase_02 AC 179 ms
13,056 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 180 ms
12,928 KB
testcase_05 AC 137 ms
12,544 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 143 ms
12,544 KB
testcase_08 AC 139 ms
12,800 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 137 ms
12,544 KB
testcase_11 AC 153 ms
12,800 KB
testcase_12 AC 87 ms
12,032 KB
testcase_13 AC 173 ms
12,928 KB
testcase_14 AC 174 ms
12,928 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 86 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m, k = gets.split.map &:to_i
ans = [-1] * n
(0...n).each do |x|
	p = n - 1 - x
	if k >= p
		ans[~x] = x
		k -= p
	else
		ans[k] = x
		break
	end
end
x = ans.max
(0...n).each { |i| ans[i] = x += 1 if ans[i] < 0 }
ans[ans.index ans.max] += m - ans.sum
puts ans
0