結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー ks2mks2m
提出日時 2024-02-23 21:24:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 2,649 ms
コンパイル使用メモリ 75,684 KB
実行使用メモリ 62,564 KB
最終ジャッジ日時 2024-09-29 05:22:58
合計ジャッジ時間 9,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,640 KB
testcase_01 AC 366 ms
61,624 KB
testcase_02 AC 308 ms
59,936 KB
testcase_03 AC 404 ms
61,852 KB
testcase_04 AC 316 ms
58,648 KB
testcase_05 AC 397 ms
61,868 KB
testcase_06 AC 412 ms
62,492 KB
testcase_07 AC 419 ms
61,720 KB
testcase_08 AC 424 ms
61,884 KB
testcase_09 AC 584 ms
62,192 KB
testcase_10 AC 542 ms
62,276 KB
testcase_11 AC 572 ms
62,512 KB
testcase_12 AC 602 ms
62,564 KB
testcase_13 AC 144 ms
54,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		for (int z = 0; z < t; z++) {
			int d = sc.nextInt();
			BigDecimal a = sc.nextBigDecimal();
			BigDecimal[] x = new BigDecimal[d];
			for (int i = 0; i < d; i++) {
				x[i] = sc.nextBigDecimal();
			}

			StringBuilder sb = new StringBuilder();
			for (int i = 0; i < d; i++) {
				sb.append(x[i].divide(a, RoundingMode.HALF_UP).toPlainString()).append(' ');
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());
		}
		sc.close();
	}
}
0