結果

問題 No.375 立方体のN等分 (1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-17 01:56:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 334 ms / 5,000 ms
コード長 693 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 76,728 KB
実行使用メモリ 42,840 KB
最終ジャッジ日時 2024-05-04 14:37:57
合計ジャッジ時間 8,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
42,512 KB
testcase_01 AC 139 ms
42,296 KB
testcase_02 AC 184 ms
42,292 KB
testcase_03 AC 143 ms
42,644 KB
testcase_04 AC 139 ms
42,468 KB
testcase_05 AC 135 ms
42,696 KB
testcase_06 AC 136 ms
42,460 KB
testcase_07 AC 134 ms
42,416 KB
testcase_08 AC 156 ms
42,736 KB
testcase_09 AC 145 ms
42,368 KB
testcase_10 AC 140 ms
42,736 KB
testcase_11 AC 147 ms
42,572 KB
testcase_12 AC 162 ms
42,616 KB
testcase_13 AC 164 ms
42,472 KB
testcase_14 AC 242 ms
42,348 KB
testcase_15 AC 151 ms
42,584 KB
testcase_16 AC 159 ms
42,600 KB
testcase_17 AC 293 ms
42,324 KB
testcase_18 AC 234 ms
42,504 KB
testcase_19 AC 152 ms
42,524 KB
testcase_20 AC 142 ms
42,176 KB
testcase_21 AC 140 ms
42,592 KB
testcase_22 AC 334 ms
42,580 KB
testcase_23 AC 154 ms
42,652 KB
testcase_24 AC 137 ms
42,428 KB
testcase_25 AC 179 ms
42,552 KB
testcase_26 AC 159 ms
42,264 KB
testcase_27 AC 157 ms
42,616 KB
testcase_28 AC 151 ms
42,188 KB
testcase_29 AC 135 ms
42,608 KB
testcase_30 AC 151 ms
42,580 KB
testcase_31 AC 155 ms
42,636 KB
testcase_32 AC 153 ms
42,436 KB
testcase_33 AC 153 ms
42,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        long M = (long)Math.cbrt(N);
        long Tmax = N-1;
        long Tmin = Tmax;
        for(long i=1; i<=M; i++){
            long a=N;
            if(a%i==0){
                long m = (long)Math.sqrt(a/i);
                for(long j=i; j<=m; j++){
                    long b = a/i;
                    if(b%j==0){
                        long c = b/j;
                        Tmin = Math.min(Tmin,i+j+c-3);
                    }
                }
            }
        }
        System.out.println(Tmin+" "+Tmax);
    }
}
0