結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー nikoro256nikoro256
提出日時 2024-02-23 21:25:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 71,180 KB
最終ジャッジ日時 2024-09-29 05:24:04
合計ジャッジ時間 1,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,964 KB
testcase_01 AC 52 ms
66,704 KB
testcase_02 AC 48 ms
63,928 KB
testcase_03 AC 53 ms
66,980 KB
testcase_04 AC 46 ms
65,360 KB
testcase_05 AC 51 ms
67,404 KB
testcase_06 AC 52 ms
67,112 KB
testcase_07 AC 51 ms
67,412 KB
testcase_08 AC 52 ms
67,124 KB
testcase_09 AC 52 ms
69,016 KB
testcase_10 AC 52 ms
68,744 KB
testcase_11 AC 57 ms
71,180 KB
testcase_12 AC 56 ms
70,348 KB
testcase_13 AC 33 ms
52,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
    d,a=map(int,input().split())
    X=list(map(int,input().split()))
    ans=[]
    for x in X:
        if x*2//a%2==1:
            ans.append(x//a+1)
        else:
            ans.append(x//a)
    print(*ans)
0