結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー Nikkuniku029Nikkuniku029
提出日時 2024-03-09 16:16:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 82,784 KB
最終ジャッジ日時 2024-09-29 21:15:08
合計ジャッジ時間 2,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
80,036 KB
testcase_01 AC 114 ms
82,648 KB
testcase_02 AC 109 ms
82,784 KB
testcase_03 AC 111 ms
82,712 KB
testcase_04 AC 109 ms
82,464 KB
testcase_05 AC 111 ms
82,600 KB
testcase_06 AC 111 ms
82,296 KB
testcase_07 AC 114 ms
82,144 KB
testcase_08 AC 112 ms
82,424 KB
testcase_09 AC 113 ms
82,752 KB
testcase_10 AC 113 ms
82,120 KB
testcase_11 AC 111 ms
82,680 KB
testcase_12 AC 115 ms
82,696 KB
testcase_13 AC 96 ms
80,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal, ROUND_HALF_UP, ROUND_HALF_EVEN


def solve(D, A, X):
    res = []
    for x in X:
        tmp = (2 * x + A) // (2 * A)
        res.append(tmp)
    return res


T = int(input())
ans = []
for _ in range(T):
    D, A = map(int, input().split())
    X = list(map(int, input().split()))
    ans.append(solve(D, A, X))
for c in ans:
    print(*c)
0