結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー naut3naut3
提出日時 2024-07-26 22:56:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,252 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,032 KB
最終ジャッジ日時 2024-07-26 22:56:54
合計ジャッジ時間 9,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 1,252 ms
61,032 KB
testcase_05 AC 606 ms
38,144 KB
testcase_06 AC 1,075 ms
54,400 KB
testcase_07 AC 136 ms
15,908 KB
testcase_08 AC 82 ms
13,440 KB
testcase_09 AC 111 ms
14,728 KB
testcase_10 AC 40 ms
11,264 KB
testcase_11 AC 35 ms
11,008 KB
testcase_12 AC 35 ms
11,008 KB
testcase_13 AC 33 ms
10,880 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 36 ms
10,752 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(200010)


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