結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー KazunKazun
提出日時 2023-06-27 01:00:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 69,936 KB
最終ジャッジ日時 2024-09-29 05:17:44
合計ジャッジ時間 1,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,736 KB
testcase_01 AC 49 ms
65,068 KB
testcase_02 AC 43 ms
64,152 KB
testcase_03 AC 46 ms
65,496 KB
testcase_04 AC 43 ms
64,096 KB
testcase_05 AC 46 ms
66,168 KB
testcase_06 AC 46 ms
66,372 KB
testcase_07 AC 45 ms
66,084 KB
testcase_08 AC 47 ms
67,196 KB
testcase_09 AC 47 ms
68,460 KB
testcase_10 AC 49 ms
69,936 KB
testcase_11 AC 53 ms
69,844 KB
testcase_12 AC 49 ms
69,084 KB
testcase_13 AC 32 ms
52,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    D, A = map(int, input().split())
    X = list(map(int, input().split()))

    def calc(x, A):
        return (2*x+A)//(2*A)

    return [calc(x, A) for x in X]

#==================================================
T = int(input())
for t in range(T):
    print(*solve())
0