結果

問題 No.350 d=vt
ユーザー バカらっくバカらっく
提出日時 2019-08-24 09:03:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 11,249 ms
コンパイル使用メモリ 425,676 KB
実行使用メモリ 52,180 KB
最終ジャッジ日時 2024-11-20 19:23:18
合計ジャッジ時間 15,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
52,180 KB
testcase_01 AC 291 ms
52,128 KB
testcase_02 AC 283 ms
51,792 KB
testcase_03 AC 284 ms
52,040 KB
testcase_04 AC 286 ms
51,920 KB
testcase_05 AC 285 ms
51,884 KB
testcase_06 AC 284 ms
52,168 KB
testcase_07 AC 281 ms
51,804 KB
testcase_08 AC 288 ms
51,876 KB
testcase_09 AC 294 ms
52,044 KB
testcase_10 AC 285 ms
51,976 KB
testcase_11 AC 281 ms
52,032 KB
testcase_12 AC 282 ms
51,816 KB
testcase_13 AC 288 ms
51,944 KB
testcase_14 AC 290 ms
51,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
    val (m,s) = readLine()!!.replace(".", "").split(" ").map { it.toInt() }
    val ans = (m * s) / 10000
    println(ans)
}
0