結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー maguroflymagurofly
提出日時 2024-07-26 22:06:23
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 280 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-07-26 22:06:30
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 89 ms
12,288 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 104 ms
18,816 KB
testcase_11 AC 98 ms
14,336 KB
testcase_12 AC 97 ms
14,848 KB
testcase_13 AC 93 ms
12,288 KB
testcase_14 AC 90 ms
12,160 KB
testcase_15 AC 92 ms
12,288 KB
testcase_16 AC 93 ms
12,160 KB
testcase_17 AC 92 ms
12,416 KB
testcase_18 AC 92 ms
12,416 KB
testcase_19 AC 89 ms
12,416 KB
testcase_20 AC 88 ms
12,288 KB
testcase_21 AC 99 ms
12,416 KB
testcase_22 AC 89 ms
12,288 KB
testcase_23 AC 89 ms
12,288 KB
testcase_24 AC 91 ms
12,160 KB
testcase_25 AC 89 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
graph = Array.new(N) { [] }
N.times do |i|
	gets.chomp.split.each do |x|
		graph[i] << (x.to_i - 1) if x != ?H
	end
end

dfs = ->(u, p) {
	str = ""
	graph[u].each do |v|
		next if v == p
		str << "(" << dfs[v, u] << "yl)"
	end
	str << "meth"
}
puts dfs[0, 0] + "ane"
0