結果

問題 No.376 立方体のN等分 (2)
ユーザー uafr_csuafr_cs
提出日時 2017-11-06 21:04:58
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 622 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 85,888 KB
実行使用メモリ 42,600 KB
最終ジャッジ日時 2024-11-24 04:08:52
合計ジャッジ時間 44,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,416 KB
testcase_01 AC 156 ms
42,136 KB
testcase_02 AC 575 ms
42,352 KB
testcase_03 AC 1,049 ms
42,232 KB
testcase_04 AC 746 ms
42,452 KB
testcase_05 AC 140 ms
42,028 KB
testcase_06 AC 159 ms
42,452 KB
testcase_07 AC 163 ms
42,244 KB
testcase_08 AC 174 ms
42,376 KB
testcase_09 AC 209 ms
42,288 KB
testcase_10 AC 897 ms
42,188 KB
testcase_11 AC 304 ms
42,248 KB
testcase_12 AC 521 ms
42,360 KB
testcase_13 AC 302 ms
42,244 KB
testcase_14 AC 337 ms
42,160 KB
testcase_15 AC 265 ms
42,368 KB
testcase_16 AC 4,813 ms
42,284 KB
testcase_17 AC 512 ms
42,324 KB
testcase_18 AC 262 ms
42,084 KB
testcase_19 AC 875 ms
42,272 KB
testcase_20 AC 309 ms
42,212 KB
testcase_21 TLE -
testcase_22 AC 284 ms
42,556 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 284 ms
42,304 KB
testcase_26 TLE -
testcase_27 AC 361 ms
42,304 KB
testcase_28 AC 282 ms
42,248 KB
testcase_29 AC 484 ms
42,184 KB
testcase_30 AC 376 ms
42,176 KB
testcase_31 AC 283 ms
42,388 KB
testcase_32 AC 367 ms
42,172 KB
testcase_33 AC 276 ms
42,600 KB
testcase_34 AC 280 ms
42,288 KB
testcase_35 AC 425 ms
42,280 KB
testcase_36 AC 273 ms
42,120 KB
testcase_37 AC 274 ms
42,188 KB
testcase_38 AC 443 ms
42,160 KB
testcase_39 AC 488 ms
42,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		
		long max = N - 1, min = N - 1;
		for(long i = 1; i * i * i <= N; i++){
			if(N % i != 0){ continue; }
			
			final long new_N = (N / i);
			for(long j = i; j * j <= new_N; j++){
				if(new_N % j != 0){ continue; }
				final long k = new_N / j;
				
				min = Math.min(min, (i - 1) + (j - 1) + (k - 1));
			}
		}
		
		System.out.println(min + " " + max);
	}
}
0