結果

問題 No.2621 Fee Schedule
ユーザー halshals
提出日時 2024-02-28 02:26:59
言語 Julia
(1.10.2)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 246,188 KB
最終ジャッジ日時 2024-10-01 17:45:03
合計ジャッジ時間 4,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
242,220 KB
testcase_01 AC 290 ms
245,928 KB
testcase_02 AC 286 ms
242,260 KB
testcase_03 AC 289 ms
241,400 KB
testcase_04 AC 294 ms
241,972 KB
testcase_05 AC 291 ms
242,420 KB
testcase_06 AC 291 ms
244,488 KB
testcase_07 AC 297 ms
244,436 KB
testcase_08 AC 295 ms
241,880 KB
testcase_09 AC 299 ms
246,188 KB
testcase_10 AC 291 ms
245,196 KB
testcase_11 AC 292 ms
246,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main()
    a, b, c = int(inputs())
    println(min(a * c, b))
end
# --------input func----------
input() = readline()
inputs() = split(readline())
int(s::AbstractChar) = parse(Int, s)
int(s::AbstractString) = parse(Int, s)
int(v::AbstractArray) = map(x -> parse(Int, x), v)
debug(x...) = println(stderr, x...)
isfile("myinput.txt") && (mystdin = open("myinput.txt", "r"); redirect_stdin(mystdin))
main()
@isdefined(mystdin) && close(mystdin)
0