結果

問題 No.376 立方体のN等分 (2)
ユーザー uwiuwi
提出日時 2016-06-05 15:31:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,161 bytes
コンパイル時間 4,726 ms
コンパイル使用メモリ 85,088 KB
実行使用メモリ 40,696 KB
最終ジャッジ日時 2024-04-17 04:51:12
合計ジャッジ時間 15,681 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 76 ms
39,860 KB
testcase_02 AC 235 ms
40,288 KB
testcase_03 AC 205 ms
40,188 KB
testcase_04 AC 1,113 ms
40,232 KB
testcase_05 AC 88 ms
39,464 KB
testcase_06 WA -
testcase_07 AC 76 ms
37,716 KB
testcase_08 AC 117 ms
40,320 KB
testcase_09 AC 132 ms
40,312 KB
testcase_10 AC 125 ms
40,696 KB
testcase_11 AC 356 ms
40,352 KB
testcase_12 AC 236 ms
40,168 KB
testcase_13 AC 313 ms
40,320 KB
testcase_14 AC 412 ms
40,552 KB
testcase_15 AC 280 ms
40,044 KB
testcase_16 WA -
testcase_17 AC 175 ms
40,244 KB
testcase_18 AC 302 ms
40,404 KB
testcase_19 AC 225 ms
40,320 KB
testcase_20 AC 368 ms
40,372 KB
testcase_21 AC 128 ms
40,244 KB
testcase_22 AC 294 ms
40,276 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 95 ms
39,900 KB
testcase_26 WA -
testcase_27 AC 473 ms
40,220 KB
testcase_28 AC 311 ms
40,036 KB
testcase_29 AC 698 ms
40,552 KB
testcase_30 AC 443 ms
40,400 KB
testcase_31 AC 267 ms
39,964 KB
testcase_32 AC 155 ms
40,036 KB
testcase_33 AC 78 ms
39,668 KB
testcase_34 AC 203 ms
40,276 KB
testcase_35 AC 578 ms
40,380 KB
testcase_36 AC 312 ms
40,208 KB
testcase_37 AC 311 ms
40,084 KB
testcase_38 AC 614 ms
40,448 KB
testcase_39 AC 251 ms
40,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package q5xx;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.InputMismatchException;

public class Q547 {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	void solve()
	{
		long n = nl();
		long min = Long.MAX_VALUE;
		long max = n-1;
		for(int c = 1;(long)c*c*c <= n;c++){
			if(n % c == 0 && c-1 < min){
				if(c + 2*Math.sqrt(n/c) >= min-5)continue;
				int s = (int)Math.sqrt(n/c)+1;
				for(int b = s;b >= c;b--){
					if(n/c%b == 0){
						min = Math.min(min, c-1+(b-1)+(n/c/b-1));
						break;
					}
				}
			}
		}
		out.println(min + " " + max);
	}
	
	void run() throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		
		long s = System.currentTimeMillis();
		solve();
		out.flush();
		if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
	}
	
	public static void main(String[] args) throws Exception { new Q547().run(); }
	
	private byte[] inbuf = new byte[1024];
	private int lenbuf = 0, ptrbuf = 0;
	
	private int readByte()
	{
		if(lenbuf == -1)throw new InputMismatchException();
		if(ptrbuf >= lenbuf){
			ptrbuf = 0;
			try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); }
			if(lenbuf <= 0)return -1;
		}
		return inbuf[ptrbuf++];
	}
	
	private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); }
	private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; }
	
	private double nd() { return Double.parseDouble(ns()); }
	private char nc() { return (char)skip(); }
	
	private String ns()
	{
		int b = skip();
		StringBuilder sb = new StringBuilder();
		while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ')
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}
	
	private char[] ns(int n)
	{
		char[] buf = new char[n];
		int b = skip(), p = 0;
		while(p < n && !(isSpaceChar(b))){
			buf[p++] = (char)b;
			b = readByte();
		}
		return n == p ? buf : Arrays.copyOf(buf, p);
	}
	
	private char[][] nm(int n, int m)
	{
		char[][] map = new char[n][];
		for(int i = 0;i < n;i++)map[i] = ns(m);
		return map;
	}
	
	private int[] na(int n)
	{
		int[] a = new int[n];
		for(int i = 0;i < n;i++)a[i] = ni();
		return a;
	}
	
	private int ni()
	{
		int num = 0, b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private long nl()
	{
		long num = 0;
		int b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); }
}
0