結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー nikoro256nikoro256
提出日時 2024-07-26 22:21:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 610 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 414,112 KB
最終ジャッジ日時 2024-07-26 22:22:07
合計ジャッジ時間 11,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,852 KB
testcase_01 AC 40 ms
54,348 KB
testcase_02 AC 39 ms
54,272 KB
testcase_03 AC 39 ms
54,672 KB
testcase_04 TLE -
testcase_05 AC 1,054 ms
259,220 KB
testcase_06 AC 1,871 ms
414,112 KB
testcase_07 AC 286 ms
106,848 KB
testcase_08 AC 158 ms
89,212 KB
testcase_09 AC 188 ms
94,640 KB
testcase_10 AC 93 ms
78,192 KB
testcase_11 AC 70 ms
74,576 KB
testcase_12 AC 89 ms
78,116 KB
testcase_13 AC 46 ms
60,996 KB
testcase_14 AC 42 ms
55,984 KB
testcase_15 AC 47 ms
61,720 KB
testcase_16 AC 49 ms
61,196 KB
testcase_17 AC 41 ms
54,720 KB
testcase_18 AC 41 ms
55,052 KB
testcase_19 AC 41 ms
55,848 KB
testcase_20 AC 40 ms
54,784 KB
testcase_21 AC 39 ms
54,584 KB
testcase_22 AC 39 ms
55,768 KB
testcase_23 AC 40 ms
55,720 KB
testcase_24 AC 40 ms
54,364 KB
testcase_25 AC 40 ms
54,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

sys.setrecursionlimit(4 * 10**5)

N = int(input())
C = []
for _ in range(N):
    C_d = list(map(str, input().split()))
    C.append(C_d)

ans = deque()


def dfs(parent, pos):
    global ans
    for e in C[pos]:
        if e != "H" and e != str(parent + 1):
            e = int(e) - 1
            ans.append("(")
            dfs(pos, e)
            for i in range(3):
                ans.pop()
            ans.append("y")
            ans.append("l")
            ans.append(")")
    for s in "methane":
        ans.append(s)
    return


dfs(-1, 0)
print("".join(ans))
0