結果

問題 No.375 立方体のN等分 (1)
ユーザー tentententen
提出日時 2021-12-02 10:33:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 548 ms / 5,000 ms
コード長 1,280 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 78,864 KB
実行使用メモリ 53,500 KB
最終ジャッジ日時 2024-07-05 01:49:03
合計ジャッジ時間 8,613 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
51,088 KB
testcase_01 AC 86 ms
51,572 KB
testcase_02 AC 175 ms
53,164 KB
testcase_03 AC 81 ms
50,904 KB
testcase_04 AC 82 ms
50,988 KB
testcase_05 AC 82 ms
51,212 KB
testcase_06 AC 94 ms
52,116 KB
testcase_07 AC 108 ms
52,940 KB
testcase_08 AC 152 ms
53,328 KB
testcase_09 AC 108 ms
53,160 KB
testcase_10 AC 118 ms
53,376 KB
testcase_11 AC 117 ms
53,272 KB
testcase_12 AC 123 ms
53,244 KB
testcase_13 AC 120 ms
53,176 KB
testcase_14 AC 288 ms
53,336 KB
testcase_15 AC 132 ms
53,364 KB
testcase_16 AC 120 ms
53,360 KB
testcase_17 AC 436 ms
53,312 KB
testcase_18 AC 307 ms
53,272 KB
testcase_19 AC 134 ms
53,252 KB
testcase_20 AC 115 ms
53,428 KB
testcase_21 AC 114 ms
53,388 KB
testcase_22 AC 548 ms
53,256 KB
testcase_23 AC 124 ms
53,356 KB
testcase_24 AC 115 ms
53,320 KB
testcase_25 AC 167 ms
53,332 KB
testcase_26 AC 124 ms
53,488 KB
testcase_27 AC 135 ms
53,268 KB
testcase_28 AC 117 ms
53,500 KB
testcase_29 AC 114 ms
53,284 KB
testcase_30 AC 121 ms
53,236 KB
testcase_31 AC 127 ms
53,304 KB
testcase_32 AC 112 ms
53,212 KB
testcase_33 AC 124 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        long min = n - 1;
        for (long i = 1; i <= Math.sqrt(n); i++) {
            if (n % i != 0) {
                continue;
            }
            for (int j = 1; j <= Math.sqrt(n / i); j++) {
                if (n / i % j == 0) {
                    min = Math.min(min, i + j + n / i / j - 3);
                }
            }
        }
        System.out.println(min + " " + (n - 1));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0