結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 324 ms
55,372 KB
testcase_03 AC 315 ms
51,468 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 321 ms
51,568 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 318 ms
51,676 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 / 2
    println(ans)
}

0