結果

問題 No.1176 少ない質問
ユーザー ApassApass
提出日時 2020-08-21 22:11:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 785 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 37,304 KB
最終ジャッジ日時 2024-10-15 05:45:49
合計ジャッジ時間 5,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,036 KB
testcase_01 AC 49 ms
36,868 KB
testcase_02 AC 48 ms
36,936 KB
testcase_03 AC 51 ms
36,820 KB
testcase_04 AC 51 ms
36,476 KB
testcase_05 AC 51 ms
36,788 KB
testcase_06 AC 47 ms
36,916 KB
testcase_07 AC 49 ms
36,752 KB
testcase_08 AC 49 ms
37,104 KB
testcase_09 AC 49 ms
36,720 KB
testcase_10 AC 49 ms
37,072 KB
testcase_11 AC 50 ms
36,824 KB
testcase_12 AC 46 ms
37,304 KB
testcase_13 AC 47 ms
36,748 KB
testcase_14 AC 47 ms
36,976 KB
testcase_15 AC 49 ms
36,864 KB
testcase_16 AC 47 ms
36,824 KB
testcase_17 AC 51 ms
36,784 KB
testcase_18 AC 49 ms
36,920 KB
testcase_19 AC 50 ms
36,480 KB
testcase_20 AC 48 ms
36,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class B_FewQuestions {
    private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    private static StringTokenizer st;

    private static long readLong() throws IOException {
        while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine());
        return Long.parseLong(st.nextToken());
    }

    public static void main(String[] args) throws IOException {
        long A = readLong();

        if (A == 5) {
            System.out.println(5);
        } else {
            long min = Math.min(2 * (int) (Math.ceil(Math.log(A) / Math.log(2))),
                    3 * (int) (Math.ceil(Math.log(A) / Math.log(3))));
            System.out.println(min);
        }
    }
}
0