結果

問題 No.1176 少ない質問
ユーザー tentententen
提出日時 2020-08-24 11:31:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 3,936 ms
コンパイル使用メモリ 74,008 KB
実行使用メモリ 56,160 KB
最終ジャッジ日時 2024-11-06 09:45:00
合計ジャッジ時間 5,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,016 KB
testcase_01 AC 131 ms
54,072 KB
testcase_02 AC 129 ms
53,904 KB
testcase_03 AC 129 ms
53,832 KB
testcase_04 WA -
testcase_05 AC 129 ms
53,908 KB
testcase_06 AC 114 ms
52,876 KB
testcase_07 AC 128 ms
53,968 KB
testcase_08 AC 127 ms
53,968 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 128 ms
53,908 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 130 ms
54,052 KB
testcase_17 AC 131 ms
53,764 KB
testcase_18 AC 132 ms
53,972 KB
testcase_19 AC 131 ms
54,088 KB
testcase_20 AC 127 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long a = sc.nextLong();
        long max = a;
        long x = 2;
        while (true) {
            long y = 2;
            int count = 1;
            while (y < a) {
                y *= x;
                count++;
            }
            if (max > count * x) {
                max = count * x;
            } else {
                break;
            }
            x++;
       }
       System.out.println(max);
    }
}
0