結果

問題 No.375 立方体のN等分 (1)
ユーザー atkrymatkrym
提出日時 2016-11-04 12:11:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 676 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 76,984 KB
実行使用メモリ 55,288 KB
最終ジャッジ日時 2024-11-25 02:34:01
合計ジャッジ時間 39,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,792 KB
testcase_01 AC 144 ms
54,732 KB
testcase_02 WA -
testcase_03 AC 149 ms
54,804 KB
testcase_04 AC 150 ms
54,940 KB
testcase_05 WA -
testcase_06 AC 166 ms
54,788 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 3,340 ms
54,680 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 202 ms
54,712 KB
testcase_15 AC 202 ms
54,940 KB
testcase_16 AC 4,947 ms
55,180 KB
testcase_17 WA -
testcase_18 AC 216 ms
54,900 KB
testcase_19 WA -
testcase_20 AC 1,880 ms
54,976 KB
testcase_21 AC 647 ms
54,632 KB
testcase_22 AC 216 ms
54,928 KB
testcase_23 TLE -
testcase_24 AC 221 ms
54,660 KB
testcase_25 AC 224 ms
54,944 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        long n = sc.nextLong();
        long max = n-1;
        long min = n;

        int l = (int) Math.cbrt(n);
        int a = 0;
        for (int i = l;i >= 0;i--) {
            if (n%i==0) {
                a = i;
                break;
            }
        }
        
        int d = (int)(n/(long)a);
        
        for (int i = d-1;i > 0;i--) {
            if (d%i==0) {
                min = Math.min(min, a+i+d/i-3);
            }
        }
        
        System.out.println(min + " " + max);
    }
}
0