結果

問題 No.508 超ゆとり教育
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 17:17:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 10,563 ms
コンパイル使用メモリ 427,616 KB
実行使用メモリ 49,932 KB
最終ジャッジ日時 2024-11-20 10:02:38
合計ジャッジ時間 14,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
49,872 KB
testcase_01 AC 296 ms
49,828 KB
testcase_02 AC 301 ms
49,932 KB
testcase_03 AC 298 ms
49,592 KB
testcase_04 AC 297 ms
49,896 KB
testcase_05 AC 302 ms
49,640 KB
testcase_06 AC 301 ms
49,748 KB
testcase_07 AC 292 ms
49,904 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