結果

問題 No.46 はじめのn歩
ユーザー javyjavy
提出日時 2015-11-02 21:23:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 5,000 ms
コード長 340 bytes
コンパイル時間 10,400 ms
コンパイル使用メモリ 425,772 KB
実行使用メモリ 51,052 KB
最終ジャッジ日時 2024-11-19 14:42:38
合計ジャッジ時間 14,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
50,756 KB
testcase_01 AC 312 ms
50,812 KB
testcase_02 AC 307 ms
50,756 KB
testcase_03 AC 307 ms
50,928 KB
testcase_04 AC 301 ms
50,784 KB
testcase_05 AC 307 ms
50,864 KB
testcase_06 AC 309 ms
50,912 KB
testcase_07 AC 302 ms
50,892 KB
testcase_08 AC 302 ms
51,052 KB
testcase_09 AC 305 ms
50,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

/**
 * Created by hichikawa on 2015/11/01.
 */

fun main(args: Array<String>) {
    val str = readLine() as String
    val strArray = str.split(" ")
    val numA = strArray[0].toLong()
    val numB = strArray[1].toLong()
    if(numB % numA == 0.toLong()) {
        println(numB / numA)
    } else {
        println(numB / numA + 1)
    }
}
0