結果

問題 No.920 あかあお
ユーザー yosuteconyosutecon
提出日時 2019-11-10 09:09:42
言語 Julia
(1.10.2)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 245,840 KB
最終ジャッジ日時 2024-04-09 14:15:42
合計ジャッジ時間 5,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
241,764 KB
testcase_01 AC 288 ms
243,220 KB
testcase_02 AC 283 ms
242,288 KB
testcase_03 AC 284 ms
241,216 KB
testcase_04 AC 285 ms
241,972 KB
testcase_05 AC 285 ms
241,824 KB
testcase_06 WA -
testcase_07 AC 284 ms
242,660 KB
testcase_08 AC 283 ms
245,800 KB
testcase_09 AC 283 ms
245,716 KB
testcase_10 AC 297 ms
243,900 KB
testcase_11 AC 288 ms
241,752 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