結果

問題 No.920 あかあお
ユーザー バカらっくバカらっく
提出日時 2022-02-14 02:24:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 9,771 ms
コンパイル使用メモリ 428,768 KB
実行使用メモリ 51,924 KB
最終ジャッジ日時 2024-06-29 05:53:51
合計ジャッジ時間 15,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
51,900 KB
testcase_01 AC 269 ms
51,772 KB
testcase_02 AC 289 ms
51,748 KB
testcase_03 AC 287 ms
51,704 KB
testcase_04 AC 281 ms
51,628 KB
testcase_05 AC 264 ms
51,700 KB
testcase_06 AC 267 ms
51,792 KB
testcase_07 AC 264 ms
51,680 KB
testcase_08 AC 268 ms
51,664 KB
testcase_09 AC 275 ms
51,924 KB
testcase_10 AC 267 ms
51,856 KB
testcase_11 AC 270 ms
51,644 KB
testcase_12 AC 270 ms
51,740 KB
testcase_13 AC 293 ms
51,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (x,y,z) = readLine()!!.split(" ").map { it.toInt() }
    val diff = Math.abs(x-y)
    val ans = if(diff > z) {
        Math.min(x,y) + z
    } else {
        Math.max(x,y) + (z-diff)/2
    }
    println(ans)
}
0