結果

問題 No.84 悪の算盤
ユーザー バカらっくバカらっく
提出日時 2019-09-26 08:01:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 307 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 12,254 ms
コンパイル使用メモリ 436,452 KB
実行使用メモリ 51,888 KB
最終ジャッジ日時 2024-09-23 07:38:43
合計ジャッジ時間 17,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
51,656 KB
testcase_01 AC 306 ms
51,576 KB
testcase_02 AC 298 ms
51,592 KB
testcase_03 AC 301 ms
51,888 KB
testcase_04 AC 302 ms
51,844 KB
testcase_05 AC 307 ms
51,660 KB
testcase_06 AC 302 ms
51,568 KB
testcase_07 AC 306 ms
51,888 KB
testcase_08 AC 307 ms
51,692 KB
testcase_09 AC 307 ms
51,508 KB
testcase_10 AC 306 ms
51,688 KB
testcase_11 AC 306 ms
51,644 KB
testcase_12 AC 302 ms
51,716 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    val (r,c) = readLine()!!.split(" ").map { it.toLong() }
    var ans = r * c
    if(r == c) {
        ans -= (ans * 3 / 4)
    } else {
        ans -= (ans / 2)
    }
    ans--
    println(ans)
}

0