結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー nikoro256nikoro256
提出日時 2024-07-26 22:21:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 565 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 134,032 KB
最終ジャッジ日時 2024-07-26 22:21:31
合計ジャッジ時間 4,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,912 KB
testcase_01 AC 43 ms
54,216 KB
testcase_02 AC 42 ms
54,008 KB
testcase_03 AC 42 ms
54,864 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 100 ms
78,136 KB
testcase_11 AC 77 ms
73,688 KB
testcase_12 AC 94 ms
78,112 KB
testcase_13 AC 49 ms
61,656 KB
testcase_14 AC 44 ms
55,984 KB
testcase_15 AC 49 ms
61,160 KB
testcase_16 AC 49 ms
61,380 KB
testcase_17 AC 44 ms
55,116 KB
testcase_18 AC 44 ms
55,832 KB
testcase_19 AC 43 ms
54,244 KB
testcase_20 AC 42 ms
55,224 KB
testcase_21 AC 43 ms
54,436 KB
testcase_22 AC 45 ms
54,916 KB
testcase_23 AC 43 ms
54,524 KB
testcase_24 AC 43 ms
54,656 KB
testcase_25 AC 42 ms
54,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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