結果
問題 | No.84 悪の算盤 |
ユーザー | バカらっく |
提出日時 | 2019-09-26 07:56:38 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 167 bytes |
コンパイル時間 | 11,839 ms |
コンパイル使用メモリ | 429,432 KB |
実行使用メモリ | 51,912 KB |
最終ジャッジ日時 | 2024-09-23 07:37:04 |
合計ジャッジ時間 | 16,645 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 311 ms
51,808 KB |
testcase_05 | AC | 310 ms
51,592 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used fun main(args:Array<String>) { ^
ソースコード
fun main(args:Array<String>) { val (r,c) = readLine()!!.split(" ").map { it.toLong() } var ans = r * c / 2 ans -= (ans / 2) ans-- println(ans) }