結果

問題 No.3072 Sum of sqrt(x)
ユーザー uwiuwi
提出日時 2020-09-12 16:31:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,093 bytes
コンパイル時間 5,484 ms
コンパイル使用メモリ 77,932 KB
実行使用メモリ 123,808 KB
最終ジャッジ日時 2023-08-30 15:34:12
合計ジャッジ時間 29,777 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 131 ms
39,496 KB
testcase_02 WA -
testcase_03 AC 130 ms
39,516 KB
testcase_04 AC 132 ms
39,572 KB
testcase_05 WA -
testcase_06 AC 130 ms
39,684 KB
testcase_07 OLE -
testcase_08 AC 1,171 ms
87,468 KB
testcase_09 OLE -
testcase_10 OLE -
testcase_11 OLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)); }
}
0