結果

問題 No.3099 夜の道路は気をつけて運転しなければならない
ユーザー 箱星箱星
提出日時 2021-03-05 17:02:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 12,115 ms
コンパイル使用メモリ 432,164 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-10-04 15:23:59
合計ジャッジ時間 13,894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
54,108 KB
testcase_01 AC 239 ms
54,168 KB
testcase_02 AC 248 ms
54,256 KB
testcase_03 AC 259 ms
54,084 KB
testcase_04 AC 247 ms
54,132 KB
testcase_05 AC 241 ms
54,152 KB
testcase_06 AC 242 ms
54,248 KB
testcase_07 AC 245 ms
54,132 KB
testcase_08 AC 246 ms
54,224 KB
testcase_09 AC 246 ms
54,268 KB
testcase_10 AC 253 ms
54,092 KB
testcase_11 AC 241 ms
54,216 KB
testcase_12 AC 277 ms
54,132 KB
testcase_13 AC 267 ms
54,240 KB
testcase_14 AC 265 ms
54,352 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()
    println(d.toDouble() / s.toDouble())
}

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