結果
問題 | No.376 立方体のN等分 (2) |
ユーザー | uwi |
提出日時 | 2016-06-05 15:31:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,161 bytes |
コンパイル時間 | 4,519 ms |
コンパイル使用メモリ | 82,948 KB |
実行使用メモリ | 40,372 KB |
最終ジャッジ日時 | 2024-10-08 15:44:55 |
合計ジャッジ時間 | 15,486 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 62 ms
37,680 KB |
testcase_02 | AC | 211 ms
39,884 KB |
testcase_03 | AC | 185 ms
39,928 KB |
testcase_04 | AC | 1,019 ms
40,056 KB |
testcase_05 | AC | 66 ms
38,048 KB |
testcase_06 | WA | - |
testcase_07 | AC | 63 ms
37,856 KB |
testcase_08 | AC | 105 ms
39,628 KB |
testcase_09 | AC | 120 ms
39,928 KB |
testcase_10 | AC | 114 ms
40,120 KB |
testcase_11 | AC | 331 ms
39,860 KB |
testcase_12 | AC | 219 ms
39,840 KB |
testcase_13 | AC | 291 ms
39,756 KB |
testcase_14 | AC | 381 ms
40,064 KB |
testcase_15 | AC | 255 ms
39,968 KB |
testcase_16 | WA | - |
testcase_17 | AC | 164 ms
39,680 KB |
testcase_18 | AC | 280 ms
40,132 KB |
testcase_19 | AC | 207 ms
40,012 KB |
testcase_20 | AC | 336 ms
39,960 KB |
testcase_21 | AC | 119 ms
40,020 KB |
testcase_22 | AC | 276 ms
39,732 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 85 ms
39,536 KB |
testcase_26 | WA | - |
testcase_27 | AC | 428 ms
39,936 KB |
testcase_28 | AC | 284 ms
39,732 KB |
testcase_29 | AC | 652 ms
40,180 KB |
testcase_30 | AC | 420 ms
39,732 KB |
testcase_31 | AC | 252 ms
39,840 KB |
testcase_32 | AC | 150 ms
39,732 KB |
testcase_33 | AC | 80 ms
38,012 KB |
testcase_34 | AC | 187 ms
39,828 KB |
testcase_35 | AC | 538 ms
39,672 KB |
testcase_36 | AC | 288 ms
39,596 KB |
testcase_37 | AC | 286 ms
39,724 KB |
testcase_38 | AC | 563 ms
40,160 KB |
testcase_39 | AC | 229 ms
40,112 KB |
ソースコード
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)); } }