結果

問題 No.3072 Sum of sqrt(x)
ユーザー uwiuwi
提出日時 2020-09-12 16:35:32
言語 Java21
(openjdk 21)
結果
OLE  
実行時間 -
コード長 2,125 bytes
コンパイル時間 4,451 ms
コンパイル使用メモリ 88,996 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-06-10 15:32:55
合計ジャッジ時間 31,100 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,728 KB
testcase_01 AC 114 ms
40,440 KB
testcase_02 AC 119 ms
40,284 KB
testcase_03 AC 129 ms
41,424 KB
testcase_04 AC 115 ms
40,220 KB
testcase_05 AC 129 ms
41,240 KB
testcase_06 AC 131 ms
41,500 KB
testcase_07 OLE -
testcase_08 OLE -
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 -
権限があれば一括ダウンロードができます

ソースコード

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[40];
		int[] h = new int[40];
		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 < 35; i++) {
					for (int s = t == 0 ? (int)Math.sqrt(u) : (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 = 39; i >= 1; i--) {
					if (a[i] >= 10) {
						a[i] -= 10;
						a[i - 1]++;
					}
				}

			}
			int nzf = -1;
			for (int i = 0; i < 40; i++) {
				if (nzf == -1 && a[i] != 0) {
					nzf = i;
				}
				if(nzf == -1 && i == 20){
					nzf = 20;
				}
				if(nzf != -1){
					if(i <= nzf + 18){
						sb.append(a[i]);
					}else{
						break;
					}
				}
				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