結果

問題 No.63 ポッキーゲーム
ユーザー lrf141lrf141
提出日時 2017-03-25 23:19:54
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,023 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 6,604 ms
コンパイル使用メモリ 250,580 KB
実行使用メモリ 63,336 KB
最終ジャッジ日時 2024-06-30 00:56:16
合計ジャッジ時間 26,446 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 813 ms
63,216 KB
testcase_01 AC 791 ms
63,224 KB
testcase_02 AC 829 ms
63,212 KB
testcase_03 AC 805 ms
63,304 KB
testcase_04 AC 787 ms
63,152 KB
testcase_05 AC 795 ms
63,260 KB
testcase_06 AC 794 ms
63,096 KB
testcase_07 AC 800 ms
63,140 KB
testcase_08 AC 804 ms
63,324 KB
testcase_09 AC 846 ms
63,308 KB
testcase_10 AC 837 ms
63,204 KB
testcase_11 AC 1,023 ms
63,300 KB
testcase_12 AC 814 ms
63,220 KB
testcase_13 AC 1,000 ms
63,172 KB
testcase_14 AC 795 ms
63,292 KB
testcase_15 AC 779 ms
63,176 KB
testcase_16 AC 803 ms
63,184 KB
testcase_17 AC 1,023 ms
63,336 KB
testcase_18 AC 788 ms
63,128 KB
testcase_19 AC 830 ms
63,256 KB
testcase_20 AC 793 ms
63,300 KB
testcase_21 AC 798 ms
63,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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