結果

問題 No.508 超ゆとり教育
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 17:17:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 11,180 ms
コンパイル使用メモリ 407,772 KB
実行使用メモリ 50,312 KB
最終ジャッジ日時 2023-08-12 19:30:04
合計ジャッジ時間 14,637 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
50,284 KB
testcase_01 AC 279 ms
50,292 KB
testcase_02 AC 287 ms
50,312 KB
testcase_03 AC 282 ms
50,300 KB
testcase_04 AC 282 ms
50,204 KB
testcase_05 AC 281 ms
50,292 KB
testcase_06 AC 278 ms
50,236 KB
testcase_07 AC 284 ms
50,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

import java.lang.Math
fun main(args : Array<String>) {
  val m = readLine()!!.toDouble()
  println( Math.pow(m/3,0.5).toLong() + 1L )
}
0