結果

問題 No.1057 素敵な日
ユーザー face4face4
提出日時 2021-04-10 23:49:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 10,724 ms
コンパイル使用メモリ 421,620 KB
実行使用メモリ 60,432 KB
最終ジャッジ日時 2024-06-26 20:53:22
合計ジャッジ時間 14,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
60,220 KB
testcase_01 AC 324 ms
60,236 KB
testcase_02 AC 331 ms
60,380 KB
testcase_03 AC 327 ms
60,396 KB
testcase_04 AC 326 ms
60,232 KB
testcase_05 AC 328 ms
60,268 KB
testcase_06 AC 330 ms
60,432 KB
testcase_07 AC 319 ms
60,220 KB
testcase_08 AC 327 ms
60,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a, b) = readLine()!!.split(" ").map { it.toInt() }.sorted()
    println(if(b==1) 1 else if(a==b) a*2-1 else a*2)
}
0