結果

問題 No.350 d=vt
ユーザー バカらっくバカらっく
提出日時 2019-08-24 09:03:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 9,239 ms
コンパイル使用メモリ 434,476 KB
実行使用メモリ 57,176 KB
最終ジャッジ日時 2024-04-30 21:22:38
合計ジャッジ時間 14,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
57,052 KB
testcase_01 AC 270 ms
57,120 KB
testcase_02 AC 292 ms
57,056 KB
testcase_03 AC 269 ms
57,040 KB
testcase_04 AC 269 ms
57,132 KB
testcase_05 AC 267 ms
57,044 KB
testcase_06 AC 277 ms
57,044 KB
testcase_07 AC 283 ms
57,032 KB
testcase_08 AC 263 ms
57,052 KB
testcase_09 AC 272 ms
57,044 KB
testcase_10 AC 270 ms
57,176 KB
testcase_11 AC 265 ms
57,040 KB
testcase_12 AC 263 ms
57,056 KB
testcase_13 AC 260 ms
57,092 KB
testcase_14 AC 265 ms
57,128 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