結果

問題 No.63 ポッキーゲーム
ユーザー S1hoS1ho
提出日時 2017-02-20 16:04:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 396 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 4,247 ms
コンパイル使用メモリ 77,360 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-12-24 05:22:36
合計ジャッジ時間 9,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
40,932 KB
testcase_01 AC 142 ms
41,100 KB
testcase_02 AC 129 ms
40,216 KB
testcase_03 AC 143 ms
41,412 KB
testcase_04 AC 142 ms
41,304 KB
testcase_05 AC 126 ms
40,104 KB
testcase_06 AC 142 ms
41,052 KB
testcase_07 AC 140 ms
41,344 KB
testcase_08 AC 144 ms
41,232 KB
testcase_09 AC 142 ms
41,108 KB
testcase_10 AC 146 ms
41,216 KB
testcase_11 AC 389 ms
41,176 KB
testcase_12 AC 150 ms
40,948 KB
testcase_13 AC 396 ms
40,980 KB
testcase_14 AC 150 ms
41,316 KB
testcase_15 AC 152 ms
41,236 KB
testcase_16 AC 144 ms
40,968 KB
testcase_17 AC 375 ms
41,060 KB
testcase_18 AC 141 ms
41,212 KB
testcase_19 AC 177 ms
40,952 KB
testcase_20 AC 148 ms
41,212 KB
testcase_21 AC 156 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class PokkyGame {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        int l = scanner.nextInt();
        int k = scanner.nextInt();
        
        //一回で減る長さ
        int eat = k * 2;
        
        int count = 0;
        
        while((l -= eat) > 0){
            
            count++;
            
            
        }
        
        System.out.println(count * k);
        
    }
}
0