結果

問題 No.2647 [Cherry 6th Tune A] Wind
コンテスト
ユーザー 👑 Kazun
提出日時 2023-06-27 01:07:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 74,620 KB
最終ジャッジ日時 2024-09-29 05:17:56
合計ジャッジ時間 1,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

# WA 想定

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

    def calc(x, A):
        return round(x/A)

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

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