結果

問題 No.3099 夜の道路は気をつけて運転しなければならない
ユーザー 箱星箱星
提出日時 2021-03-05 17:10:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 14,760 ms
コンパイル使用メモリ 434,104 KB
実行使用メモリ 55,232 KB
最終ジャッジ日時 2024-10-04 15:24:12
合計ジャッジ時間 16,513 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
55,032 KB
testcase_01 AC 293 ms
54,984 KB
testcase_02 AC 303 ms
55,128 KB
testcase_03 AC 294 ms
55,228 KB
testcase_04 AC 292 ms
55,128 KB
testcase_05 AC 292 ms
54,920 KB
testcase_06 AC 294 ms
55,124 KB
testcase_07 AC 291 ms
54,928 KB
testcase_08 AC 292 ms
55,092 KB
testcase_09 AC 300 ms
55,052 KB
testcase_10 AC 294 ms
55,144 KB
testcase_11 AC 290 ms
55,040 KB
testcase_12 AC 332 ms
55,232 KB
testcase_13 AC 297 ms
55,140 KB
testcase_14 AC 307 ms
54,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:5:9: warning: variable 't' is never used
    val t = nextInt()
        ^

ソースコード

diff #

import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve() {
    val t = nextInt()
    val s = nextInt()
    val d = nextInt()
    val h = d.toDouble() / s.toDouble()
    println("%.9f".format(h))
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()!!
fun nextDouble() = next().toDouble()
// endregion
0