結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 386 ms
250,444 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 385 ms
254,740 KB
testcase_04 AC 383 ms
254,900 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 386 ms
252,516 KB
testcase_08 AC 384 ms
254,880 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 381 ms
254,240 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