結果

問題 No.926 休日の平均
ユーザー バカらっくバカらっく
提出日時 2022-02-03 13:05:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 9,195 ms
コンパイル使用メモリ 435,704 KB
実行使用メモリ 52,108 KB
最終ジャッジ日時 2024-06-11 09:51:38
合計ジャッジ時間 16,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
51,836 KB
testcase_01 AC 269 ms
52,048 KB
testcase_02 AC 278 ms
52,036 KB
testcase_03 AC 268 ms
51,704 KB
testcase_04 AC 272 ms
51,952 KB
testcase_05 AC 270 ms
51,928 KB
testcase_06 AC 270 ms
51,960 KB
testcase_07 AC 273 ms
51,972 KB
testcase_08 AC 268 ms
51,732 KB
testcase_09 AC 272 ms
51,936 KB
testcase_10 AC 270 ms
51,808 KB
testcase_11 AC 269 ms
51,952 KB
testcase_12 AC 268 ms
52,052 KB
testcase_13 AC 266 ms
51,984 KB
testcase_14 AC 266 ms
51,832 KB
testcase_15 AC 259 ms
51,952 KB
testcase_16 AC 276 ms
51,908 KB
testcase_17 AC 272 ms
52,016 KB
testcase_18 AC 300 ms
51,672 KB
testcase_19 AC 288 ms
52,020 KB
testcase_20 AC 267 ms
51,728 KB
testcase_21 AC 265 ms
52,108 KB
testcase_22 AC 266 ms
51,984 KB
testcase_23 AC 265 ms
52,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (a,b,c) = readLine()!!.split(" ").map { it.toLong() }
    val tmp = a*c/b.toDouble()
    println(tmp)
}
0