結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー i_am_noobi_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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 54 ms
64,384 KB
testcase_02 AC 52 ms
62,848 KB
testcase_03 AC 54 ms
65,152 KB
testcase_04 AC 50 ms
63,360 KB
testcase_05 AC 54 ms
65,280 KB
testcase_06 AC 55 ms
64,896 KB
testcase_07 AC 56 ms
65,152 KB
testcase_08 AC 55 ms
65,664 KB
testcase_09 AC 56 ms
67,456 KB
testcase_10 AC 58 ms
67,072 KB
testcase_11 AC 60 ms
67,456 KB
testcase_12 AC 58 ms
68,196 KB
testcase_13 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

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