結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー i_am_noob
提出日時 2024-03-21 00:45:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 68,196 KB
最終ジャッジ日時 2024-09-30 09:51:03
合計ジャッジ時間 1,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
	n, A = map(int, input().split())
	x = map(int, input().split())
	y = [(i * 2 + A) // (A * 2) for i in x]
	for i in y:
		print(i, end = ' ')
	print()
0