結果

問題 No.388 階段 (1)
ユーザー tk_dango0012tk_dango0012
提出日時 2018-09-04 22:43:22
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 902 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 9,250 ms
コンパイル使用メモリ 264,140 KB
実行使用メモリ 64,832 KB
最終ジャッジ日時 2024-07-01 04:18:58
合計ジャッジ時間 23,513 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 902 ms
64,764 KB
testcase_01 AC 898 ms
64,668 KB
testcase_02 AC 893 ms
64,588 KB
testcase_03 AC 900 ms
64,760 KB
testcase_04 AC 894 ms
64,704 KB
testcase_05 AC 893 ms
64,740 KB
testcase_06 AC 898 ms
64,748 KB
testcase_07 AC 892 ms
64,736 KB
testcase_08 AC 896 ms
64,404 KB
testcase_09 AC 898 ms
64,832 KB
testcase_10 AC 895 ms
64,668 KB
testcase_11 AC 894 ms
64,792 KB
testcase_12 AC 893 ms
64,756 KB
testcase_13 AC 902 ms
64,684 KB
testcase_14 AC 892 ms
64,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
    val Array(s, f) = scala.io.StdIn.readLine.split(" ").map(_.toInt)
    
    var ans = 1
    var cur = s
    
    while(cur >= f){
        ans += 1
        cur -= f
    }
    
    println(ans)
    
}
0