結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー detteiuudetteiuu
提出日時 2024-08-17 13:31:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2024-08-17 13:31:19
合計ジャッジ時間 2,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,328 KB
testcase_01 AC 59 ms
65,152 KB
testcase_02 AC 54 ms
64,256 KB
testcase_03 AC 60 ms
67,712 KB
testcase_04 AC 52 ms
64,256 KB
testcase_05 AC 61 ms
67,712 KB
testcase_06 AC 56 ms
66,176 KB
testcase_07 AC 63 ms
68,736 KB
testcase_08 AC 63 ms
68,736 KB
testcase_09 AC 66 ms
71,552 KB
testcase_10 AC 85 ms
71,424 KB
testcase_11 AC 71 ms
73,344 KB
testcase_12 AC 72 ms
73,728 KB
testcase_13 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    D, A = map(int, input().split())
    X = list(map(int, input().split()))
    P = []
    for i in range(D):
        X[i] *= 10
        X[i] //= A
        if X[i]%10 >= 5:
            X[i] += 10
        P.append(X[i]//10)
    print(*P)
0