結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー shogo314shogo314
提出日時 2024-02-23 21:40:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-09-29 05:56:28
合計ジャッジ時間 6,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
80,000 KB
testcase_01 AC 414 ms
83,840 KB
testcase_02 AC 268 ms
83,200 KB
testcase_03 AC 425 ms
84,992 KB
testcase_04 AC 291 ms
84,340 KB
testcase_05 AC 436 ms
84,608 KB
testcase_06 AC 427 ms
85,480 KB
testcase_07 AC 412 ms
84,992 KB
testcase_08 AC 423 ms
84,756 KB
testcase_09 AC 443 ms
85,504 KB
testcase_10 AC 432 ms
85,072 KB
testcase_11 AC 436 ms
84,720 KB
testcase_12 AC 413 ms
84,736 KB
testcase_13 AC 114 ms
79,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal, ROUND_HALF_UP

for _ in range(int(input())):
    D, A = map(Decimal, input().split())
    X = list(map(Decimal, input().split()))
    ans = [(x / A).quantize(Decimal("0"), ROUND_HALF_UP) for x in X]
    print(*ans)
0