結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー ねしんねしん
提出日時 2024-07-26 22:32:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,118 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 256,420 KB
最終ジャッジ日時 2024-07-26 22:33:06
合計ジャッジ時間 9,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,556 KB
testcase_01 AC 41 ms
54,336 KB
testcase_02 AC 41 ms
54,564 KB
testcase_03 AC 40 ms
54,124 KB
testcase_04 AC 1,118 ms
256,420 KB
testcase_05 AC 820 ms
250,600 KB
testcase_06 AC 986 ms
248,780 KB
testcase_07 AC 168 ms
92,036 KB
testcase_08 AC 143 ms
83,684 KB
testcase_09 AC 173 ms
92,840 KB
testcase_10 AC 93 ms
77,752 KB
testcase_11 AC 80 ms
77,272 KB
testcase_12 AC 83 ms
77,348 KB
testcase_13 AC 44 ms
56,652 KB
testcase_14 AC 42 ms
55,872 KB
testcase_15 AC 44 ms
56,320 KB
testcase_16 AC 45 ms
56,508 KB
testcase_17 AC 42 ms
55,688 KB
testcase_18 AC 43 ms
54,928 KB
testcase_19 AC 41 ms
54,300 KB
testcase_20 AC 39 ms
54,028 KB
testcase_21 AC 39 ms
53,836 KB
testcase_22 AC 41 ms
55,124 KB
testcase_23 AC 42 ms
54,968 KB
testcase_24 AC 41 ms
55,560 KB
testcase_25 AC 40 ms
53,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys

sys.setrecursionlimit(500000)
ans=[]
check=set([1])
path=defaultdict(list)
def dfs(i):
  if i!=1:
    ans.append("(")
  for j in path[i]:
    if j not in check:
      check.add(j)
      dfs(j)
  if i!=1:
    ans.append("methyl)")
  else:
    ans.append("methane")
N=int(input())
for i in range(1,N+1):
  a=list(map(str,input().split()))
  for j in range(4):
    if a[j]!="H" and i<int(a[j]):     
      path[i].append(int(a[j]))
      path[int(a[j])].append(i)
dfs(1)
print("".join(ans))
    
0