結果

問題 No.51 やる気の問題
ユーザー kaiyori_labkaiyori_lab
提出日時 2014-11-11 05:43:00
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 991 ms / 5,000 ms
コード長 297 bytes
コンパイル時間 9,612 ms
コンパイル使用メモリ 255,196 KB
実行使用メモリ 63,604 KB
最終ジャッジ日時 2024-06-28 21:50:24
合計ジャッジ時間 34,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 945 ms
63,604 KB
testcase_01 AC 976 ms
63,580 KB
testcase_02 AC 945 ms
63,540 KB
testcase_03 AC 933 ms
63,472 KB
testcase_04 AC 942 ms
63,336 KB
testcase_05 AC 953 ms
63,272 KB
testcase_06 AC 945 ms
63,364 KB
testcase_07 AC 939 ms
63,412 KB
testcase_08 AC 945 ms
63,308 KB
testcase_09 AC 947 ms
63,304 KB
testcase_10 AC 949 ms
63,568 KB
testcase_11 AC 930 ms
63,268 KB
testcase_12 AC 966 ms
63,432 KB
testcase_13 AC 991 ms
63,340 KB
testcase_14 AC 955 ms
63,388 KB
testcase_15 AC 954 ms
63,596 KB
testcase_16 AC 958 ms
63,480 KB
testcase_17 AC 950 ms
63,516 KB
testcase_18 AC 947 ms
63,576 KB
testcase_19 AC 960 ms
63,556 KB
testcase_20 AC 958 ms
63,364 KB
testcase_21 AC 958 ms
63,572 KB
testcase_22 AC 958 ms
63,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App{
    val sc = new java.util.Scanner(System.in)
    val w, d = sc.nextInt
    def work(w: Int, d: Int): Unit = d match{
        case 1 => println(w)
        case _ => work(w - (w / d / d).toInt, d - 1)    // d * d : intの範囲を超える
    }
    work(w, d)   
}
0