結果

問題 No.903 太郎の確率
ユーザー minokasagominokasago
提出日時 2019-10-31 16:39:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 11,355 ms
コンパイル使用メモリ 427,416 KB
実行使用メモリ 51,204 KB
最終ジャッジ日時 2024-09-14 22:05:07
合計ジャッジ時間 14,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
51,004 KB
testcase_01 AC 339 ms
51,124 KB
testcase_02 AC 342 ms
51,200 KB
testcase_03 AC 342 ms
51,056 KB
testcase_04 AC 339 ms
51,204 KB
testcase_05 AC 346 ms
51,160 KB
testcase_06 AC 343 ms
51,168 KB
testcase_07 AC 341 ms
51,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>)
         ^

ソースコード

diff #

fun main(args: Array<String>)
{
    val n = readLine()!!.toInt()
    println("%f".format(1.0/n))
}
0