結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー hibit_athibit_at
提出日時 2024-02-23 21:29:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,024 KB
最終ジャッジ日時 2024-09-29 05:33:32
合計ジャッジ時間 6,574 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
80,128 KB
testcase_01 AC 435 ms
83,544 KB
testcase_02 AC 318 ms
83,688 KB
testcase_03 AC 453 ms
84,424 KB
testcase_04 AC 325 ms
83,616 KB
testcase_05 AC 485 ms
84,368 KB
testcase_06 AC 498 ms
84,788 KB
testcase_07 AC 445 ms
83,808 KB
testcase_08 AC 494 ms
85,024 KB
testcase_09 AC 483 ms
84,556 KB
testcase_10 AC 480 ms
84,760 KB
testcase_11 AC 500 ms
84,752 KB
testcase_12 AC 475 ms
84,408 KB
testcase_13 AC 113 ms
79,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal,ROUND_HALF_UP

t = int(input())
for _ in range(t):
    d,a = list(map(int, input().split(' ')))
    p = list(map(Decimal, input().split(' ')))
    ans = []
    for i in p:
        # print(i/a)
        q = Decimal(str(i/a)).quantize(Decimal('0'),rounding=ROUND_HALF_UP)
        ans.append(q)
    print(*ans)
0