結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー Akijin_007Akijin_007
提出日時 2024-02-23 21:26:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 66,308 KB
最終ジャッジ日時 2024-09-29 05:26:44
合計ジャッジ時間 1,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,988 KB
testcase_01 AC 49 ms
62,916 KB
testcase_02 AC 44 ms
61,228 KB
testcase_03 AC 51 ms
64,064 KB
testcase_04 AC 47 ms
62,480 KB
testcase_05 AC 49 ms
63,856 KB
testcase_06 AC 51 ms
65,348 KB
testcase_07 AC 51 ms
64,940 KB
testcase_08 AC 55 ms
65,636 KB
testcase_09 AC 52 ms
65,180 KB
testcase_10 AC 53 ms
65,904 KB
testcase_11 AC 52 ms
66,260 KB
testcase_12 AC 50 ms
66,308 KB
testcase_13 AC 36 ms
53,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

T = int(input())

ans = []
for i in range(T):
    D, A = map(int, input().split())
    X = list(map(int, input().split()))
    a = []

    c, d = divmod(A, 2)
    c += d

    for j in range(D):
        u, v = divmod(X[j], A)
        if v >= c:
            u += 1
        a.append(u)

    ans.append(a)

for i in range(T):
    print(" ".join([str(_) for _ in ans[i]]))

0