結果

問題 No.1619 Coccinellidae
ユーザー yuruhiyayuruhiya
提出日時 2021-07-22 22:43:08
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-07-17 19:04:45
合計ジャッジ時間 4,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 128 ms
13,952 KB
testcase_02 AC 136 ms
13,824 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 141 ms
14,336 KB
testcase_05 AC 114 ms
12,928 KB
testcase_06 WA -
testcase_07 AC 120 ms
13,440 KB
testcase_08 AC 126 ms
13,312 KB
testcase_09 AC 76 ms
12,288 KB
testcase_10 AC 110 ms
13,312 KB
testcase_11 AC 121 ms
13,440 KB
testcase_12 AC 74 ms
12,160 KB
testcase_13 AC 138 ms
14,336 KB
testcase_14 AC 130 ms
13,568 KB
testcase_15 AC 81 ms
12,160 KB
testcase_16 AC 75 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m, k = gets.split.map &:to_i
ans = [p] * 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.select { _1 }.max + 1
(0...n).each { |i| ans[i] ||= x += 1 }
ans[ans.index ans.max] += m - ans.sum
puts ans * "\n"
0