結果

問題 No.254 文字列の構成
ユーザー cielciel
提出日時 2015-07-25 00:02:30
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-07-16 01:14:10
合計ジャッジ時間 5,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,544 KB
testcase_01 AC 100 ms
12,288 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 92 ms
12,416 KB
testcase_04 AC 92 ms
12,544 KB
testcase_05 AC 94 ms
12,288 KB
testcase_06 AC 92 ms
12,544 KB
testcase_07 AC 96 ms
12,416 KB
testcase_08 AC 94 ms
12,288 KB
testcase_09 AC 91 ms
12,544 KB
testcase_10 AC 93 ms
12,416 KB
testcase_11 AC 92 ms
12,544 KB
testcase_12 AC 94 ms
12,544 KB
testcase_13 AC 94 ms
12,288 KB
testcase_14 AC 93 ms
12,288 KB
testcase_15 AC 94 ms
12,288 KB
testcase_16 AC 90 ms
12,160 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 93 ms
12,416 KB
testcase_23 AC 95 ms
12,416 KB
testcase_24 AC 97 ms
12,544 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 95 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
M=10000
A=(1..M).map{|i|i*i}.reverse
def dfs(lst,n,last)
	if n==0
		puts lst.each_with_index.map{|e,i|((97+2*i).chr+(97+2*i+1).chr)*(e-1) + (97+2*i).chr}*''
		exit
	else
		last.step(A.size-1){|i|
			d,r=n.divmod(A[i])
			if d>0
				dfs(lst+[M-i]*d,r,i+1)
			end
		}
	end
end
N=gets.to_i
dfs([],N,0)
0