結果

問題 No.63 ポッキーゲーム
ユーザー kameyama_skameyama_s
提出日時 2023-05-29 17:17:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 347 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 3,372 ms
コンパイル使用メモリ 74,016 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-06-08 19:18:18
合計ジャッジ時間 7,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,224 KB
testcase_01 AC 120 ms
41,396 KB
testcase_02 AC 119 ms
41,156 KB
testcase_03 AC 110 ms
39,988 KB
testcase_04 AC 124 ms
41,284 KB
testcase_05 AC 123 ms
41,248 KB
testcase_06 AC 115 ms
41,108 KB
testcase_07 AC 122 ms
41,232 KB
testcase_08 AC 120 ms
40,984 KB
testcase_09 AC 117 ms
41,160 KB
testcase_10 AC 115 ms
40,236 KB
testcase_11 AC 339 ms
40,340 KB
testcase_12 AC 123 ms
40,944 KB
testcase_13 AC 347 ms
41,152 KB
testcase_14 AC 131 ms
40,932 KB
testcase_15 AC 126 ms
40,856 KB
testcase_16 AC 112 ms
40,576 KB
testcase_17 AC 325 ms
39,816 KB
testcase_18 AC 120 ms
41,136 KB
testcase_19 AC 153 ms
41,088 KB
testcase_20 AC 113 ms
40,228 KB
testcase_21 AC 131 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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