結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー むつあるむつある
提出日時 2024-07-29 12:13:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 144,392 KB
最終ジャッジ日時 2024-07-29 12:13:25
合計ジャッジ時間 8,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,888 KB
testcase_01 AC 35 ms
52,116 KB
testcase_02 AC 34 ms
52,248 KB
testcase_03 AC 35 ms
53,120 KB
testcase_04 AC 367 ms
144,392 KB
testcase_05 AC 204 ms
109,496 KB
testcase_06 AC 334 ms
137,240 KB
testcase_07 AC 99 ms
79,888 KB
testcase_08 AC 75 ms
77,952 KB
testcase_09 AC 87 ms
78,704 KB
testcase_10 AC 65 ms
72,344 KB
testcase_11 AC 61 ms
69,920 KB
testcase_12 AC 67 ms
72,660 KB
testcase_13 AC 38 ms
53,696 KB
testcase_14 AC 37 ms
53,032 KB
testcase_15 AC 38 ms
52,884 KB
testcase_16 AC 40 ms
54,512 KB
testcase_17 AC 37 ms
53,448 KB
testcase_18 AC 37 ms
53,216 KB
testcase_19 AC 35 ms
53,104 KB
testcase_20 AC 35 ms
52,820 KB
testcase_21 AC 35 ms
52,956 KB
testcase_22 AC 35 ms
53,740 KB
testcase_23 AC 35 ms
52,412 KB
testcase_24 AC 35 ms
53,112 KB
testcase_25 AC 36 ms
53,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
g=[[] for _ in range(n)]
for i in range(n):
  c=input().split()
  for j in c:
    if j=='H':
      continue
    g[i].append(int(j)-1)
    
ans=[]

dq=[~0,0]
check=[0]*n
check[0]=1
while dq:
  v=dq.pop()
  if v>0:
    ans.append('(')
  if v<0:
    if v==-1:
      ans.append('methane')
    else:
      ans.append('methyl)')
    continue
  for i in g[v]:
    if check[i]:
      continue
    check[i]=1
    dq.append(~i)
    dq.append(i)
    
print(''.join(ans))
0