結果

問題 No.2766 Delicious Multiply Spice
ユーザー tentententen
提出日時 2024-06-04 13:28:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,617 bytes
コンパイル時間 6,388 ms
コンパイル使用メモリ 79,124 KB
実行使用メモリ 37,556 KB
最終ジャッジ日時 2024-06-04 13:28:43
合計ジャッジ時間 8,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,160 KB
testcase_01 AC 50 ms
37,044 KB
testcase_02 AC 56 ms
37,412 KB
testcase_03 AC 54 ms
37,348 KB
testcase_04 AC 52 ms
37,024 KB
testcase_05 AC 51 ms
37,396 KB
testcase_06 AC 52 ms
37,168 KB
testcase_07 AC 54 ms
37,412 KB
testcase_08 AC 54 ms
37,272 KB
testcase_09 AC 53 ms
37,112 KB
testcase_10 AC 53 ms
37,392 KB
testcase_11 AC 60 ms
37,164 KB
testcase_12 AC 52 ms
37,304 KB
testcase_13 AC 53 ms
37,184 KB
testcase_14 AC 53 ms
37,556 KB
testcase_15 AC 54 ms
37,360 KB
testcase_16 AC 49 ms
37,040 KB
testcase_17 AC 54 ms
37,276 KB
testcase_18 AC 54 ms
37,292 KB
testcase_19 AC 51 ms
37,408 KB
testcase_20 AC 52 ms
36,848 KB
testcase_21 AC 53 ms
37,380 KB
testcase_22 AC 51 ms
37,300 KB
testcase_23 AC 53 ms
36,904 KB
testcase_24 AC 52 ms
37,148 KB
testcase_25 AC 52 ms
36,984 KB
testcase_26 AC 59 ms
37,296 KB
testcase_27 AC 52 ms
37,436 KB
testcase_28 AC 54 ms
37,280 KB
testcase_29 AC 59 ms
37,232 KB
testcase_30 AC 53 ms
37,032 KB
testcase_31 AC 53 ms
37,272 KB
testcase_32 AC 51 ms
37,240 KB
testcase_33 AC 53 ms
37,036 KB
testcase_34 AC 53 ms
37,304 KB
testcase_35 AC 53 ms
37,292 KB
testcase_36 AC 51 ms
37,312 KB
testcase_37 AC 53 ms
37,412 KB
testcase_38 AC 53 ms
37,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        System.out.println(getString(sc.nextLong()));
    }
    
    static String getString(long x) {
        if (x == 1) {
            return "";
        }
        if ((x - 1) % 2 == 0) {
            String current = getString((x - 1) / 2);
            if (current != null) {
                return current + "A";
            }
        }
        if ((x - 1) % 3 == 0) {
            String current = getString((x - 1) / 3);
            if (current != null) {
                return current + "B";
            }
        }
        return null;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0