結果

問題 No.115 遠足のおやつ
ユーザー horiesinitihoriesiniti
提出日時 2018-03-28 08:35:59
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-06-25 13:02:39
合計ジャッジ時間 7,054 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 99 ms
12,416 KB
testcase_02 WA -
testcase_03 AC 97 ms
12,160 KB
testcase_04 WA -
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 92 ms
12,160 KB
testcase_07 AC 97 ms
12,032 KB
testcase_08 AC 93 ms
12,288 KB
testcase_09 AC 94 ms
12,416 KB
testcase_10 AC 96 ms
12,160 KB
testcase_11 AC 93 ms
12,032 KB
testcase_12 AC 93 ms
12,160 KB
testcase_13 AC 91 ms
12,288 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 153 ms
13,696 KB
testcase_18 AC 91 ms
12,160 KB
testcase_19 AC 98 ms
12,032 KB
testcase_20 AC 100 ms
12,288 KB
testcase_21 AC 93 ms
12,160 KB
testcase_22 WA -
testcase_23 AC 95 ms
12,288 KB
testcase_24 WA -
testcase_25 AC 145 ms
13,312 KB
testcase_26 AC 111 ms
13,184 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 126 ms
13,184 KB
testcase_30 WA -
testcase_31 AC 113 ms
13,056 KB
testcase_32 WA -
testcase_33 AC 97 ms
12,160 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 235 ms
14,464 KB
testcase_40 AC 92 ms
12,160 KB
testcase_41 AC 92 ms
12,288 KB
testcase_42 AC 92 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:40: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

def f(a,b)
	if b==nil
		return true
	end
	a.size.times{|i|
		return a[i]<b[i] if a[i]!=b[i]
	}
	return false
end

n,d,k=gets.split.map{|e| e.to_i}
dp = Array.new(d+1).map{Array.new(k+1,[])}

n.times{|i|
	m=i+1
	break if m>=dp.size
	dp[m][1]=[m,[m]]
}
(1..(k-1)).each{|i|
	d.times{|j|
		if dp[j][i]==[]
			next
		end
		e0=dp[j][i][0]
		e1=dp[j][i][1]
		((e1.last+1)..n).each{|add|
			e2=e0+add
			if dp.size<=e2
				break
			end
			e3=Marshal.load(Marshal.dump(e1))
			e3<<add
			if f(e3,dp[e2][i+1][1])==true
				dp[e2][i+1]=[e2,e3]
			end
		}
	}
}
if dp[d][k][1]==nil
	puts -1
else
	puts dp[d][k][1]*" "
end
0