結果

問題 No.1176 少ない質問
ユーザー ApassApass
提出日時 2020-08-21 22:07:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 3,419 ms
コンパイル使用メモリ 73,776 KB
実行使用メモリ 37,144 KB
最終ジャッジ日時 2024-10-15 05:41:13
合計ジャッジ時間 5,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,876 KB
testcase_01 AC 52 ms
36,640 KB
testcase_02 AC 53 ms
37,040 KB
testcase_03 AC 52 ms
36,668 KB
testcase_04 AC 53 ms
36,840 KB
testcase_05 AC 53 ms
36,792 KB
testcase_06 AC 52 ms
37,144 KB
testcase_07 AC 53 ms
36,760 KB
testcase_08 AC 53 ms
36,792 KB
testcase_09 AC 52 ms
36,988 KB
testcase_10 AC 52 ms
36,888 KB
testcase_11 AC 52 ms
36,652 KB
testcase_12 AC 53 ms
36,668 KB
testcase_13 AC 52 ms
36,948 KB
testcase_14 AC 52 ms
36,744 KB
testcase_15 AC 52 ms
36,988 KB
testcase_16 AC 52 ms
36,996 KB
testcase_17 AC 52 ms
36,828 KB
testcase_18 AC 52 ms
37,076 KB
testcase_19 AC 55 ms
36,792 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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();

        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