結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー utauta
提出日時 2024-02-24 10:26:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 66,484 KB
最終ジャッジ日時 2024-09-29 10:00:31
合計ジャッジ時間 1,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,420 KB
testcase_01 AC 47 ms
62,324 KB
testcase_02 AC 46 ms
61,652 KB
testcase_03 AC 50 ms
63,180 KB
testcase_04 AC 45 ms
61,916 KB
testcase_05 AC 49 ms
62,660 KB
testcase_06 AC 52 ms
63,940 KB
testcase_07 AC 49 ms
62,920 KB
testcase_08 AC 48 ms
62,636 KB
testcase_09 AC 49 ms
66,280 KB
testcase_10 AC 49 ms
64,852 KB
testcase_11 AC 52 ms
66,484 KB
testcase_12 AC 51 ms
65,552 KB
testcase_13 AC 37 ms
53,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    D, A = list(map(int, input().split()))
    X = list(map(int, input().split()))
    ans = []
    for x in X:
        ans.append(int((2*x+A)//(2*A)))
    print(" ".join(map(str, ans)))
0