結果

問題 No.63 ポッキーゲーム
ユーザー S1hoS1ho
提出日時 2017-02-20 16:04:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 313 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 2,923 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-06-06 13:31:28
合計ジャッジ時間 6,959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,560 KB
testcase_01 AC 109 ms
39,768 KB
testcase_02 AC 96 ms
39,576 KB
testcase_03 AC 112 ms
40,960 KB
testcase_04 AC 108 ms
41,164 KB
testcase_05 AC 110 ms
40,984 KB
testcase_06 AC 109 ms
40,992 KB
testcase_07 AC 110 ms
40,072 KB
testcase_08 AC 117 ms
41,136 KB
testcase_09 AC 115 ms
41,288 KB
testcase_10 AC 113 ms
40,880 KB
testcase_11 AC 311 ms
40,224 KB
testcase_12 AC 114 ms
41,104 KB
testcase_13 AC 313 ms
41,136 KB
testcase_14 AC 116 ms
40,852 KB
testcase_15 AC 119 ms
41,076 KB
testcase_16 AC 113 ms
41,104 KB
testcase_17 AC 309 ms
40,852 KB
testcase_18 AC 112 ms
40,852 KB
testcase_19 AC 143 ms
41,208 KB
testcase_20 AC 108 ms
39,936 KB
testcase_21 AC 119 ms
41,080 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