結果

問題 No.51 やる気の問題
ユーザー kaiyori_labkaiyori_lab
提出日時 2014-11-11 05:24:14
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 251 bytes
コンパイル時間 6,818 ms
コンパイル使用メモリ 254,600 KB
実行使用メモリ 65,244 KB
最終ジャッジ日時 2024-06-28 21:49:48
合計ジャッジ時間 26,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 818 ms
65,208 KB
testcase_01 AC 810 ms
65,100 KB
testcase_02 AC 808 ms
64,908 KB
testcase_03 AC 840 ms
65,000 KB
testcase_04 AC 854 ms
64,916 KB
testcase_05 RE -
testcase_06 AC 831 ms
65,028 KB
testcase_07 AC 856 ms
64,924 KB
testcase_08 AC 844 ms
64,940 KB
testcase_09 RE -
testcase_10 AC 816 ms
65,000 KB
testcase_11 AC 809 ms
65,108 KB
testcase_12 AC 810 ms
64,924 KB
testcase_13 AC 811 ms
64,768 KB
testcase_14 AC 813 ms
65,244 KB
testcase_15 RE -
testcase_16 AC 817 ms
65,080 KB
testcase_17 AC 814 ms
65,068 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 820 ms
64,900 KB
testcase_21 AC 830 ms
65,136 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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