結果

問題 No.63 ポッキーゲーム
ユーザー lrf141lrf141
提出日時 2017-03-25 23:22:15
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,141 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 7,536 ms
コンパイル使用メモリ 242,168 KB
実行使用メモリ 63,404 KB
最終ジャッジ日時 2024-06-30 00:57:01
合計ジャッジ時間 29,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 905 ms
63,276 KB
testcase_01 AC 897 ms
63,364 KB
testcase_02 AC 898 ms
63,308 KB
testcase_03 AC 896 ms
62,980 KB
testcase_04 AC 897 ms
63,240 KB
testcase_05 AC 899 ms
63,224 KB
testcase_06 AC 894 ms
63,404 KB
testcase_07 AC 899 ms
63,352 KB
testcase_08 AC 899 ms
63,052 KB
testcase_09 AC 905 ms
63,120 KB
testcase_10 AC 902 ms
63,368 KB
testcase_11 AC 1,139 ms
63,052 KB
testcase_12 AC 918 ms
63,216 KB
testcase_13 AC 1,141 ms
63,136 KB
testcase_14 AC 913 ms
63,136 KB
testcase_15 AC 909 ms
63,332 KB
testcase_16 AC 909 ms
63,112 KB
testcase_17 AC 1,117 ms
63,124 KB
testcase_18 AC 898 ms
63,028 KB
testcase_19 AC 931 ms
63,380 KB
testcase_20 AC 907 ms
63,340 KB
testcase_21 AC 911 ms
63,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object no63{
    def main(args:Array[String]):Unit = {
        val scan = new java.util.Scanner(System.in)
        var l,k = scan.nextInt()
        var res = 0
        while(2*k < l){
            l -= 2*k
            res += 1
        }
        println(k*res)
    }
}
0