結果

問題 No.375 立方体のN等分 (1)
ユーザー atkrymatkrym
提出日時 2016-11-04 12:11:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 676 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 77,276 KB
実行使用メモリ 57,476 KB
最終ジャッジ日時 2024-05-03 21:49:51
合計ジャッジ時間 41,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,312 KB
testcase_01 AC 157 ms
42,388 KB
testcase_02 WA -
testcase_03 AC 154 ms
42,200 KB
testcase_04 AC 139 ms
41,868 KB
testcase_05 WA -
testcase_06 AC 167 ms
42,360 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 3,474 ms
42,316 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 216 ms
42,108 KB
testcase_15 AC 213 ms
42,480 KB
testcase_16 TLE -
testcase_17 WA -
testcase_18 AC 221 ms
42,596 KB
testcase_19 WA -
testcase_20 AC 1,982 ms
42,344 KB
testcase_21 AC 668 ms
42,192 KB
testcase_22 AC 230 ms
42,436 KB
testcase_23 TLE -
testcase_24 AC 227 ms
42,440 KB
testcase_25 AC 231 ms
42,120 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