結果

問題 No.920 あかあお
ユーザー yosuteconyosutecon
提出日時 2019-11-10 09:09:42
言語 Julia
(1.10.2)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 241,720 KB
最終ジャッジ日時 2024-10-01 17:24:03
合計ジャッジ時間 5,176 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
241,016 KB
testcase_01 AC 287 ms
240,956 KB
testcase_02 AC 292 ms
241,212 KB
testcase_03 AC 294 ms
241,212 KB
testcase_04 AC 288 ms
241,720 KB
testcase_05 AC 290 ms
240,832 KB
testcase_06 WA -
testcase_07 AC 315 ms
241,212 KB
testcase_08 AC 287 ms
240,648 KB
testcase_09 AC 287 ms
241,084 KB
testcase_10 AC 293 ms
240,756 KB
testcase_11 AC 299 ms
240,828 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

parseInt(x) = parse(Int, x)
parseMap(x::Array{SubString{String},1}) = map(parseInt, x)

function main()
    x,y,z = readline() |> split |> parseMap
    println(min((x+y+z)>>1,min(x+y)+z))
end
main()
0