結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
240,700 KB
testcase_01 AC 290 ms
240,576 KB
testcase_02 AC 294 ms
240,576 KB
testcase_03 AC 294 ms
240,376 KB
testcase_04 AC 292 ms
240,956 KB
testcase_05 AC 293 ms
240,824 KB
testcase_06 AC 292 ms
240,572 KB
testcase_07 AC 295 ms
240,696 KB
testcase_08 AC 293 ms
240,572 KB
testcase_09 AC 293 ms
241,084 KB
testcase_10 AC 293 ms
240,572 KB
testcase_11 AC 291 ms
240,568 KB
testcase_12 AC 296 ms
240,824 KB
testcase_13 AC 305 ms
240,696 KB
権限があれば一括ダウンロードができます

ソースコード

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