結果

問題 No.375 立方体のN等分 (1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-17 01:47:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 55,128 KB
最終ジャッジ日時 2024-05-04 14:37:39
合計ジャッジ時間 8,698 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
42,248 KB
testcase_01 AC 126 ms
42,220 KB
testcase_02 AC 154 ms
42,268 KB
testcase_03 AC 126 ms
42,452 KB
testcase_04 AC 127 ms
42,160 KB
testcase_05 AC 121 ms
41,336 KB
testcase_06 WA -
testcase_07 AC 136 ms
42,440 KB
testcase_08 AC 157 ms
42,544 KB
testcase_09 WA -
testcase_10 AC 135 ms
42,056 KB
testcase_11 AC 129 ms
41,964 KB
testcase_12 AC 138 ms
42,112 KB
testcase_13 AC 144 ms
42,364 KB
testcase_14 AC 218 ms
42,408 KB
testcase_15 AC 147 ms
42,672 KB
testcase_16 AC 142 ms
42,360 KB
testcase_17 AC 283 ms
42,608 KB
testcase_18 AC 237 ms
42,540 KB
testcase_19 AC 155 ms
42,384 KB
testcase_20 AC 136 ms
42,652 KB
testcase_21 AC 121 ms
41,880 KB
testcase_22 AC 308 ms
42,052 KB
testcase_23 AC 131 ms
42,256 KB
testcase_24 AC 128 ms
42,216 KB
testcase_25 AC 166 ms
42,168 KB
testcase_26 AC 139 ms
42,612 KB
testcase_27 AC 147 ms
42,600 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 143 ms
42,340 KB
testcase_32 AC 137 ms
42,332 KB
testcase_33 AC 130 ms
42,252 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=2; 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