結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー nikoro256nikoro256
提出日時 2024-07-26 22:23:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,702 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 346,260 KB
最終ジャッジ日時 2024-07-26 22:23:41
合計ジャッジ時間 11,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,116 KB
testcase_01 AC 41 ms
54,088 KB
testcase_02 AC 41 ms
54,132 KB
testcase_03 AC 41 ms
54,916 KB
testcase_04 AC 1,702 ms
346,260 KB
testcase_05 AC 725 ms
170,152 KB
testcase_06 AC 1,411 ms
271,088 KB
testcase_07 AC 209 ms
96,092 KB
testcase_08 AC 144 ms
88,664 KB
testcase_09 AC 186 ms
90,080 KB
testcase_10 AC 88 ms
78,396 KB
testcase_11 AC 66 ms
71,188 KB
testcase_12 AC 86 ms
77,776 KB
testcase_13 AC 44 ms
55,352 KB
testcase_14 AC 44 ms
55,576 KB
testcase_15 AC 43 ms
55,980 KB
testcase_16 AC 44 ms
56,180 KB
testcase_17 AC 43 ms
55,324 KB
testcase_18 AC 42 ms
54,508 KB
testcase_19 AC 41 ms
54,436 KB
testcase_20 AC 42 ms
55,304 KB
testcase_21 AC 41 ms
55,056 KB
testcase_22 AC 41 ms
54,084 KB
testcase_23 AC 41 ms
54,936 KB
testcase_24 AC 41 ms
54,280 KB
testcase_25 AC 42 ms
54,236 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)
            ans.pop()
            ans.append("yl)")
    ans.append("meth")
    ans.append("ane")
    return


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