結果

問題 No.63 ポッキーゲーム
ユーザー haru66nylon
提出日時 2019-02-27 22:37:41
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

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