結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー viral8viral8
提出日時 2024-04-06 17:20:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,189 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 81,892 KB
最終ジャッジ日時 2024-07-26 16:27:50
合計ジャッジ時間 15,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,416 KB
testcase_01 AC 131 ms
54,044 KB
testcase_02 AC 133 ms
54,108 KB
testcase_03 AC 136 ms
54,172 KB
testcase_04 AC 1,189 ms
81,892 KB
testcase_05 AC 965 ms
75,364 KB
testcase_06 AC 1,170 ms
80,416 KB
testcase_07 AC 451 ms
60,840 KB
testcase_08 AC 338 ms
59,760 KB
testcase_09 AC 430 ms
60,284 KB
testcase_10 AC 215 ms
57,496 KB
testcase_11 AC 193 ms
57,020 KB
testcase_12 AC 200 ms
57,136 KB
testcase_13 AC 171 ms
54,616 KB
testcase_14 AC 160 ms
54,236 KB
testcase_15 AC 171 ms
54,256 KB
testcase_16 AC 171 ms
54,652 KB
testcase_17 AC 152 ms
54,204 KB
testcase_18 AC 149 ms
54,348 KB
testcase_19 AC 136 ms
54,016 KB
testcase_20 AC 134 ms
54,176 KB
testcase_21 AC 136 ms
53,908 KB
testcase_22 AC 132 ms
53,924 KB
testcase_23 AC 133 ms
54,368 KB
testcase_24 AC 131 ms
54,124 KB
testcase_25 AC 117 ms
52,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[][] path = new int[N][];
		for(int i=0;i<N;i++){
			int[] temp = new int[4];
			for(int j=0;j<4;j++){
				String C = sc.next();
				if(C.equals("H"))
					temp[j] = -1;
				else
					temp[j] = Integer.parseInt(C)-1;
			}
			path[i] = temp;
		}
		StringBuilder ans = new StringBuilder();
		dfs(0,path,ans);
		System.out.println(ans.toString());
	}
	private static void dfs(int now,int[][] path,StringBuilder ans){
		for(int next:path[now]){
			if(next!=-1){
				ans.append("(");
				for(int i=0;i<4;i++)
					if(path[next][i]==now)
						path[next][i] = -1;
				dfs(next,path,ans);
				ans.replace(ans.length()-3,ans.length(),"yl)");
			}
		}
		ans.append("methane");
	}
}
0