結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー miya145592miya145592
提出日時 2024-07-26 23:10:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 240,296 KB
最終ジャッジ日時 2024-07-26 23:10:36
合計ジャッジ時間 8,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,748 KB
testcase_01 AC 38 ms
53,500 KB
testcase_02 AC 41 ms
52,400 KB
testcase_03 AC 39 ms
52,948 KB
testcase_04 AC 700 ms
240,296 KB
testcase_05 AC 363 ms
154,552 KB
testcase_06 AC 485 ms
201,840 KB
testcase_07 AC 124 ms
88,792 KB
testcase_08 AC 84 ms
82,336 KB
testcase_09 AC 109 ms
86,380 KB
testcase_10 AC 61 ms
69,632 KB
testcase_11 AC 52 ms
65,048 KB
testcase_12 AC 55 ms
66,484 KB
testcase_13 AC 38 ms
53,168 KB
testcase_14 AC 39 ms
52,592 KB
testcase_15 AC 39 ms
53,880 KB
testcase_16 AC 40 ms
53,808 KB
testcase_17 AC 39 ms
53,664 KB
testcase_18 AC 40 ms
54,432 KB
testcase_19 AC 38 ms
53,876 KB
testcase_20 AC 38 ms
53,420 KB
testcase_21 AC 39 ms
52,256 KB
testcase_22 AC 38 ms
53,340 KB
testcase_23 AC 42 ms
53,536 KB
testcase_24 AC 37 ms
53,556 KB
testcase_25 AC 38 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10**6)
input = sys.stdin.readline
N = int(input())
C = [input().split() for _ in range(N)]
G = [[] for _ in range(N)]
for i in range(N):
    for c in C[i]:
        if c!="H":
            j = int(c)-1
            G[i].append(j)

def dfs(v, p):
    if v!=0:
        ans.append("(")
    for nv in G[v]:
        if nv==p:
            continue
        dfs(nv, v)
    if v==0:
        ans.append("methane")
    else:
        ans.append("methyl)")

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