結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー 2000 Ekiben2000 Ekiben
提出日時 2024-07-26 22:08:44
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 551 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 849,716 KB
最終ジャッジ日時 2024-07-26 22:08:50
合計ジャッジ時間 4,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,968 KB
testcase_01 AC 40 ms
54,772 KB
testcase_02 AC 40 ms
55,056 KB
testcase_03 AC 39 ms
55,268 KB
testcase_04 MLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.read
sys.setrecursionlimit(300000)

visited = [False] * 300001
def dfs(u):
    visited[u] = True
    b = sorted(dfs(v) for v in adj[u] if not visited[v])
    return "methane" if not b else "".join("(" + x[:-3] + "yl)" for x in b) + "methane"

d = input().split()
N = int(d[0])
adj = [[] for _ in range(N + 1)]
index = 1
for i in range(1, N + 1):
    for _ in range(4):
        n = d[index]
        index += 1
        if n != 'H':
            n = int(n)
            if n != i:
                adj[i].append(n)
print(dfs(1))
0