結果

問題 No.376 立方体のN等分 (2)
ユーザー htensaihtensai
提出日時 2020-02-07 08:32:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,967 ms / 5,000 ms
コード長 1,098 bytes
コンパイル時間 3,631 ms
コンパイル使用メモリ 79,184 KB
実行使用メモリ 55,896 KB
最終ジャッジ日時 2024-09-25 07:12:45
合計ジャッジ時間 20,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
51,072 KB
testcase_01 AC 77 ms
50,880 KB
testcase_02 AC 205 ms
53,376 KB
testcase_03 AC 224 ms
53,440 KB
testcase_04 AC 220 ms
53,600 KB
testcase_05 AC 78 ms
51,236 KB
testcase_06 AC 77 ms
50,892 KB
testcase_07 AC 77 ms
50,920 KB
testcase_08 AC 104 ms
53,136 KB
testcase_09 AC 129 ms
53,436 KB
testcase_10 AC 307 ms
55,564 KB
testcase_11 AC 150 ms
53,176 KB
testcase_12 AC 176 ms
53,572 KB
testcase_13 AC 177 ms
53,428 KB
testcase_14 AC 179 ms
53,464 KB
testcase_15 AC 185 ms
53,304 KB
testcase_16 AC 1,682 ms
55,896 KB
testcase_17 AC 203 ms
53,444 KB
testcase_18 AC 197 ms
53,348 KB
testcase_19 AC 214 ms
53,488 KB
testcase_20 AC 206 ms
53,340 KB
testcase_21 AC 1,732 ms
55,556 KB
testcase_22 AC 210 ms
53,468 KB
testcase_23 AC 1,774 ms
55,588 KB
testcase_24 AC 1,689 ms
55,236 KB
testcase_25 AC 213 ms
53,320 KB
testcase_26 AC 1,967 ms
55,596 KB
testcase_27 AC 214 ms
53,532 KB
testcase_28 AC 215 ms
53,504 KB
testcase_29 AC 214 ms
53,248 KB
testcase_30 AC 219 ms
53,500 KB
testcase_31 AC 218 ms
53,512 KB
testcase_32 AC 225 ms
53,504 KB
testcase_33 AC 216 ms
53,352 KB
testcase_34 AC 220 ms
53,308 KB
testcase_35 AC 215 ms
53,328 KB
testcase_36 AC 216 ms
53,344 KB
testcase_37 AC 214 ms
53,412 KB
testcase_38 AC 215 ms
53,352 KB
testcase_39 AC 218 ms
53,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        long n = Long.parseLong(br.readLine());
        TreeSet<Long> set = new TreeSet<>();
        for (long i = 1; i <= Math.sqrt(n); i++) {
            if (n % i == 0) {
                set.add(i);
                set.add(n / i);
            }
        }
        long min = Long.MAX_VALUE;
        for (long x : set) {
            if (x > Math.sqrt(n)) {
                break;
            }
            for (long y : set) {
                if (y > Math.sqrt(n)) {
                    break;
                }
                if (x * y > n) {
                    break;
                }
                if (x > y) {
                    continue;
                }
                if ((n / x) % y != 0) {
                    continue;
                }
                min = Math.min(min, x + y + n / x / y - 3);
            }
        }
        System.out.println(min + " " + (n - 1));
   }
}
0