結果

問題 No.84 悪の算盤
ユーザー バカらっくバカらっく
提出日時 2019-09-26 07:57:54
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 11,606 ms
コンパイル使用メモリ 434,160 KB
実行使用メモリ 51,928 KB
最終ジャッジ日時 2024-09-23 07:38:08
合計ジャッジ時間 16,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
51,820 KB
testcase_01 AC 321 ms
51,704 KB
testcase_02 AC 330 ms
51,572 KB
testcase_03 AC 320 ms
51,928 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 323 ms
51,888 KB
testcase_08 AC 317 ms
51,680 KB
testcase_09 AC 319 ms
51,664 KB
testcase_10 AC 318 ms
51,628 KB
testcase_11 AC 317 ms
51,676 KB
testcase_12 AC 323 ms
51,648 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
    ans -= (ans / 2)
    ans--
    println(ans)
}

0