結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー viral8viral8
提出日時 2024-04-07 00:13:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,177 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 77,692 KB
実行使用メモリ 71,160 KB
最終ジャッジ日時 2024-07-26 16:28:05
合計ジャッジ時間 14,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,304 KB
testcase_01 AC 130 ms
41,352 KB
testcase_02 AC 131 ms
41,272 KB
testcase_03 AC 135 ms
41,440 KB
testcase_04 AC 1,157 ms
71,160 KB
testcase_05 AC 938 ms
65,176 KB
testcase_06 AC 1,177 ms
69,132 KB
testcase_07 AC 496 ms
50,384 KB
testcase_08 AC 334 ms
48,384 KB
testcase_09 AC 432 ms
49,676 KB
testcase_10 AC 208 ms
45,372 KB
testcase_11 AC 181 ms
43,728 KB
testcase_12 AC 192 ms
43,984 KB
testcase_13 AC 160 ms
42,148 KB
testcase_14 AC 145 ms
41,672 KB
testcase_15 AC 169 ms
41,816 KB
testcase_16 AC 168 ms
42,240 KB
testcase_17 AC 151 ms
41,812 KB
testcase_18 AC 142 ms
41,592 KB
testcase_19 AC 136 ms
41,552 KB
testcase_20 AC 133 ms
41,620 KB
testcase_21 AC 135 ms
41,288 KB
testcase_22 AC 138 ms
41,600 KB
testcase_23 AC 122 ms
40,464 KB
testcase_24 AC 132 ms
41,520 KB
testcase_25 AC 132 ms
41,300 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/2,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