結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー むつあるむつある
提出日時 2024-07-26 22:00:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 150,972 KB
最終ジャッジ日時 2024-07-26 22:00:37
合計ジャッジ時間 7,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,524 KB
testcase_01 AC 36 ms
53,496 KB
testcase_02 AC 36 ms
52,288 KB
testcase_03 AC 39 ms
53,284 KB
testcase_04 AC 605 ms
150,972 KB
testcase_05 AC 275 ms
112,052 KB
testcase_06 AC 525 ms
137,680 KB
testcase_07 AC 107 ms
80,600 KB
testcase_08 AC 100 ms
77,848 KB
testcase_09 AC 104 ms
79,084 KB
testcase_10 AC 79 ms
76,764 KB
testcase_11 AC 71 ms
72,496 KB
testcase_12 AC 67 ms
72,612 KB
testcase_13 AC 39 ms
54,492 KB
testcase_14 AC 39 ms
53,488 KB
testcase_15 AC 39 ms
54,448 KB
testcase_16 AC 39 ms
54,532 KB
testcase_17 AC 37 ms
53,592 KB
testcase_18 AC 39 ms
52,988 KB
testcase_19 AC 37 ms
52,128 KB
testcase_20 AC 37 ms
53,492 KB
testcase_21 AC 37 ms
53,084 KB
testcase_22 AC 38 ms
53,764 KB
testcase_23 AC 37 ms
52,924 KB
testcase_24 AC 38 ms
53,564 KB
testcase_25 AC 36 ms
52,764 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)
    g[int(j)-1].append(i)
    
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