結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー hiro1729hiro1729
提出日時 2024-07-26 23:47:06
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 318 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 104,768 KB
最終ジャッジ日時 2024-07-26 23:47:12
合計ジャッジ時間 4,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,080 KB
testcase_01 AC 34 ms
52,948 KB
testcase_02 AC 37 ms
52,816 KB
testcase_03 AC 37 ms
52,252 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 98 ms
77,604 KB
testcase_11 AC 59 ms
75,256 KB
testcase_12 AC 70 ms
76,968 KB
testcase_13 AC 42 ms
53,676 KB
testcase_14 AC 36 ms
53,312 KB
testcase_15 AC 38 ms
54,724 KB
testcase_16 AC 39 ms
54,944 KB
testcase_17 AC 36 ms
52,752 KB
testcase_18 AC 39 ms
54,304 KB
testcase_19 AC 37 ms
53,408 KB
testcase_20 AC 37 ms
52,884 KB
testcase_21 AC 37 ms
52,604 KB
testcase_22 AC 37 ms
52,800 KB
testcase_23 AC 37 ms
52,932 KB
testcase_24 AC 37 ms
53,684 KB
testcase_25 AC 37 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
g = [[] for _ in range(N)]
for i in range(N):
	C = input().split()
	for j in C:
		if j != 'H':
			g[i].append(int(j) - 1)

vis = [False] * N

ans = ""

def dfs(u):
	vis[u] = True
	global ans
	ans += '('
	for v in g[u]:
		if not vis[v]:
			dfs(v)
	ans += 'methyl)'

dfs(0)

print(ans[1:-7] + "methane")
0