結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー naut3naut3
提出日時 2024-07-26 22:55:06
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 579 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 104,140 KB
最終ジャッジ日時 2024-07-26 22:55:10
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,740 KB
testcase_01 AC 39 ms
53,900 KB
testcase_02 AC 39 ms
54,440 KB
testcase_03 AC 38 ms
53,416 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 83 ms
78,008 KB
testcase_11 AC 68 ms
71,592 KB
testcase_12 AC 74 ms
74,756 KB
testcase_13 AC 42 ms
54,972 KB
testcase_14 AC 40 ms
53,176 KB
testcase_15 AC 41 ms
54,768 KB
testcase_16 AC 43 ms
54,748 KB
testcase_17 AC 40 ms
53,876 KB
testcase_18 AC 39 ms
53,432 KB
testcase_19 AC 39 ms
52,800 KB
testcase_20 AC 39 ms
52,952 KB
testcase_21 AC 39 ms
53,552 KB
testcase_22 AC 39 ms
52,324 KB
testcase_23 AC 38 ms
53,540 KB
testcase_24 AC 38 ms
53,092 KB
testcase_25 AC 38 ms
52,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())

    graph = [[] for _ in range(N)]

    for i in range(N):
        C = list(input().split())

        for s in C:
            if s != 'H':
                s = int(s)
                graph[i].append(s - 1)

    ans = []
    seen = [False for _ in range(N)]

    def dfs(v, ans):
        seen[v] = True

        for nxt in graph[v]:
            if seen[nxt]:
                continue

            ans.append("(")
            dfs(nxt, ans)
            ans.append("methyl)")

    dfs(0, ans)
    print(*ans, 'methane', sep='')
    return 0


main()
0