結果

問題 No.63 ポッキーゲーム
ユーザー haru66nylonharu66nylon
提出日時 2019-02-27 22:37:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 371 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 56,080 KB
最終ジャッジ日時 2024-06-23 05:22:27
合計ジャッジ時間 6,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,084 KB
testcase_01 AC 126 ms
53,500 KB
testcase_02 AC 133 ms
53,980 KB
testcase_03 AC 114 ms
53,016 KB
testcase_04 AC 128 ms
54,036 KB
testcase_05 AC 118 ms
53,056 KB
testcase_06 AC 129 ms
53,832 KB
testcase_07 AC 134 ms
56,080 KB
testcase_08 AC 131 ms
53,956 KB
testcase_09 AC 132 ms
53,940 KB
testcase_10 AC 124 ms
53,124 KB
testcase_11 AC 371 ms
53,380 KB
testcase_12 AC 137 ms
54,020 KB
testcase_13 AC 368 ms
54,276 KB
testcase_14 AC 141 ms
53,460 KB
testcase_15 AC 144 ms
54,104 KB
testcase_16 AC 129 ms
53,876 KB
testcase_17 AC 348 ms
53,968 KB
testcase_18 AC 122 ms
52,908 KB
testcase_19 AC 162 ms
54,032 KB
testcase_20 AC 132 ms
54,308 KB
testcase_21 AC 141 ms
53,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
    public static  void main(String[] args){
        Scanner sc = new Scanner(System.in);
        
        int l = sc.nextInt();
        int k = sc.nextInt();
        int count = 0;
        
        while(l > (2 * k)){
            l = l - k * 2;
            count++;
        }
        
        System.out.println(k * count);
    }
}
0