結果

問題 No.2766 Delicious Multiply Spice
ユーザー ks2mks2m
提出日時 2024-05-31 22:06:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 87,260 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-05-31 22:06:27
合計ジャッジ時間 8,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,124 KB
testcase_01 AC 130 ms
54,080 KB
testcase_02 AC 124 ms
54,140 KB
testcase_03 AC 118 ms
53,072 KB
testcase_04 AC 121 ms
52,836 KB
testcase_05 AC 128 ms
54,248 KB
testcase_06 AC 111 ms
53,132 KB
testcase_07 AC 127 ms
54,036 KB
testcase_08 AC 121 ms
54,304 KB
testcase_09 AC 131 ms
54,116 KB
testcase_10 AC 129 ms
54,384 KB
testcase_11 AC 132 ms
54,092 KB
testcase_12 AC 132 ms
54,020 KB
testcase_13 AC 126 ms
54,356 KB
testcase_14 AC 107 ms
52,896 KB
testcase_15 AC 124 ms
54,248 KB
testcase_16 AC 118 ms
53,904 KB
testcase_17 AC 124 ms
54,188 KB
testcase_18 AC 112 ms
53,080 KB
testcase_19 AC 135 ms
53,108 KB
testcase_20 AC 111 ms
52,896 KB
testcase_21 AC 125 ms
54,156 KB
testcase_22 AC 126 ms
54,096 KB
testcase_23 AC 136 ms
54,000 KB
testcase_24 AC 127 ms
53,128 KB
testcase_25 AC 125 ms
54,116 KB
testcase_26 AC 118 ms
53,452 KB
testcase_27 AC 128 ms
54,004 KB
testcase_28 AC 121 ms
53,460 KB
testcase_29 AC 129 ms
54,348 KB
testcase_30 AC 124 ms
54,004 KB
testcase_31 AC 124 ms
54,288 KB
testcase_32 AC 128 ms
54,040 KB
testcase_33 AC 128 ms
54,028 KB
testcase_34 AC 125 ms
53,896 KB
testcase_35 AC 128 ms
53,996 KB
testcase_36 AC 138 ms
54,096 KB
testcase_37 AC 128 ms
53,828 KB
testcase_38 AC 113 ms
53,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		sc.close();

		System.out.println(dfs(n));
	}

	static Map<Long, String> map = new HashMap<>();
	static String dfs(long n) {
		if (map.containsKey(n)) {
			return map.get(n);
		}
		if (n == 1) {
			return "";
		}
		n--;
		String res = "";
		if (n % 2 == 0) {
			res = dfs(n / 2);
			if (res != null) {
				return res + "A";
			}
		}
		if (n % 3 == 0) {
			res = dfs(n / 3);
			if (res != null) {
				return res + "B";
			}
		}
		return null;
	}
}
0