結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー abap34abap34
提出日時 2024-02-23 21:23:35
言語 Julia
(1.10.2)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 257,648 KB
最終ジャッジ日時 2024-04-09 14:34:36
合計ジャッジ時間 6,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 357 ms
251,584 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 357 ms
252,672 KB
testcase_04 AC 357 ms
250,328 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 361 ms
252,380 KB
testcase_08 AC 359 ms
255,384 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 350 ms
255,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main()
    T = parse(Int, readline())
    for _ in 1:T
        D, A = parse.(Int, split(readline()))
        X = parse.(Int, split(readline()))
        for x in X
            print(round(Int, x // A), " ")
        end
        println()
    end
end

main()
0