結果
問題 | No.3072 Sum of sqrt(x) |
ユーザー | uwi |
提出日時 | 2020-09-12 16:31:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,093 bytes |
コンパイル時間 | 7,275 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 94,728 KB |
最終ジャッジ日時 | 2024-06-10 15:28:11 |
合計ジャッジ時間 | 22,292 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 127 ms
41,300 KB |
testcase_02 | WA | - |
testcase_03 | AC | 122 ms
40,132 KB |
testcase_04 | AC | 116 ms
40,192 KB |
testcase_05 | WA | - |
testcase_06 | AC | 123 ms
41,400 KB |
testcase_07 | OLE | - |
testcase_08 | AC | 1,189 ms
94,728 KB |
testcase_09 | OLE | - |
testcase_10 | OLE | - |
testcase_11 | OLE | - |
testcase_12 | OLE | - |
testcase_13 | OLE | - |
testcase_14 | OLE | - |
testcase_15 | OLE | - |
testcase_16 | OLE | - |
testcase_17 | OLE | - |
testcase_18 | OLE | - |
testcase_19 | OLE | - |
testcase_20 | OLE | - |
testcase_21 | OLE | - |
testcase_22 | OLE | - |
testcase_23 | OLE | - |
testcase_24 | OLE | - |
testcase_25 | OLE | - |
testcase_26 | OLE | - |
testcase_27 | OLE | - |
testcase_28 | OLE | - |
testcase_29 | OLE | - |
ソースコード
package extra; import java.io.PrintWriter; import java.util.Arrays; import java.util.Scanner; public class P3072_2 { static Scanner in; static PrintWriter out; static String INPUT = ""; static void solve() { int[] a = new int[35]; int[] h = new int[35]; StringBuilder sb = new StringBuilder(); for(int T = ni();T > 0;T--){ long x = nl(); // 00 * 11 if(x != 0) { for (int i = 14; i >= 0; i--) { h[i] = (int) (x % 100); x /= 100; } double t = 0; double u = 0; for (int i = 0; i < 30; i++) { for (int s = t == 0 ? 9 : (int)(u/t);s >= 0;s--){ if ((t + s) * s <= u) { a[i + 5] += s; u = (u - (t + s) * s) * 100 + h[i]; t = (t + 2 * s) * 10; break; } } } for (int i = 34; i >= 1; i--) { if (a[i] >= 10) { a[i] -= 10; a[i - 1]++; } } } int nzf = -1; for (int i = 0; i < 35; i++) { if (nzf == -1 && a[i] != 0) { nzf = i; } if(nzf == -1 && i == 20){ nzf = 20; } if(nzf != -1 && i <= nzf + 18){ sb.append(a[i]); // out.print(a[i]); } if(i == 20){ sb.append("."); // out.print("."); } } sb.append("\n"); // out.println(); } out.print(sb); } public static void main(String[] args) throws Exception { // int n = 1000000, m = 99999; // Random gen = new Random(); // StringBuilder sb = new StringBuilder(); // sb.append(n + " "); // for (int i = 0; i < n; i++) { // sb.append(Math.abs(gen.nextLong() % 1000000000000000000L) + " "); // } // INPUT = sb.toString(); long S = System.currentTimeMillis(); in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT); out = new PrintWriter(System.out); solve(); out.flush(); long G = System.currentTimeMillis(); tr(G-S+"ms"); } static int ni() { return Integer.parseInt(in.next()); } static long nl() { return Long.parseLong(in.next()); } static double nd() { return Double.parseDouble(in.next()); } static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); } }