結果

問題 No.903 太郎の確率
ユーザー minokasagominokasago
提出日時 2019-10-31 16:39:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 13,300 ms
コンパイル使用メモリ 407,412 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2023-10-13 00:03:42
合計ジャッジ時間 17,406 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
53,500 KB
testcase_01 AC 314 ms
53,616 KB
testcase_02 AC 314 ms
53,688 KB
testcase_03 AC 318 ms
53,636 KB
testcase_04 AC 321 ms
53,404 KB
testcase_05 AC 316 ms
53,656 KB
testcase_06 AC 320 ms
53,400 KB
testcase_07 AC 322 ms
53,364 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