結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー titiatitia
提出日時 2024-07-27 06:57:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,187 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 107,396 KB
最終ジャッジ日時 2024-07-27 06:57:31
合計ジャッジ時間 9,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 1,187 ms
107,396 KB
testcase_05 AC 516 ms
60,416 KB
testcase_06 AC 990 ms
93,824 KB
testcase_07 AC 114 ms
20,344 KB
testcase_08 AC 70 ms
15,488 KB
testcase_09 AC 94 ms
18,048 KB
testcase_10 AC 39 ms
11,776 KB
testcase_11 AC 34 ms
11,264 KB
testcase_12 AC 35 ms
11,264 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

sys.setrecursionlimit(1000000)

N=int(input())
C=[input().split() for i in range(N)]

E=[[] for i in range(N)]


for i in range(N):
    for j in range(4):
        if C[i][j]=="H":
            continue
        x=int(C[i][j])-1
        E[i].append(x)

ANS=[]
USE=[0]*N

def dfs(x):
    USE[x]=1
    ANS.append("(")

    for to in E[x]:
        if USE[to]==0:
            USE[to]=1
            dfs(to)

    
    ANS.append("methyl")
    ANS.append(")")

dfs(0)

ANS=ANS[1:]
ANS.pop()
ANS[-1]="methane"

print("".join(ANS))
0