結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー viral8viral8
提出日時 2024-04-07 00:12:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 995 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 78,048 KB
実行使用メモリ 85,536 KB
最終ジャッジ日時 2024-07-26 16:28:01
合計ジャッジ時間 14,974 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,056 KB
testcase_01 AC 118 ms
54,144 KB
testcase_02 AC 118 ms
53,876 KB
testcase_03 AC 124 ms
54,596 KB
testcase_04 AC 995 ms
85,536 KB
testcase_05 AC 859 ms
74,752 KB
testcase_06 AC 943 ms
77,928 KB
testcase_07 AC 444 ms
61,140 KB
testcase_08 AC 312 ms
59,720 KB
testcase_09 AC 390 ms
61,840 KB
testcase_10 AC 196 ms
57,192 KB
testcase_11 AC 181 ms
57,064 KB
testcase_12 AC 183 ms
57,228 KB
testcase_13 AC 158 ms
54,788 KB
testcase_14 AC 136 ms
54,132 KB
testcase_15 AC 155 ms
54,436 KB
testcase_16 AC 156 ms
55,188 KB
testcase_17 AC 143 ms
54,532 KB
testcase_18 AC 143 ms
54,228 KB
testcase_19 AC 125 ms
54,148 KB
testcase_20 AC 128 ms
53,948 KB
testcase_21 AC 129 ms
54,092 KB
testcase_22 AC 131 ms
54,016 KB
testcase_23 AC 133 ms
53,880 KB
testcase_24 AC 131 ms
54,108 KB
testcase_25 AC 119 ms
54,168 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(N-1,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