結果

問題 No.63 ポッキーゲーム
ユーザー kameyama_skameyama_s
提出日時 2023-05-29 17:17:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 381 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-12-28 10:02:13
合計ジャッジ時間 7,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,220 KB
testcase_01 AC 136 ms
41,164 KB
testcase_02 AC 131 ms
41,168 KB
testcase_03 AC 121 ms
40,068 KB
testcase_04 AC 133 ms
40,228 KB
testcase_05 AC 139 ms
41,136 KB
testcase_06 AC 146 ms
41,300 KB
testcase_07 AC 143 ms
40,900 KB
testcase_08 AC 131 ms
41,076 KB
testcase_09 AC 138 ms
40,972 KB
testcase_10 AC 138 ms
41,112 KB
testcase_11 AC 369 ms
40,068 KB
testcase_12 AC 141 ms
40,108 KB
testcase_13 AC 381 ms
39,968 KB
testcase_14 AC 127 ms
39,976 KB
testcase_15 AC 136 ms
40,148 KB
testcase_16 AC 137 ms
40,452 KB
testcase_17 AC 365 ms
39,856 KB
testcase_18 AC 128 ms
40,244 KB
testcase_19 AC 164 ms
40,116 KB
testcase_20 AC 141 ms
40,932 KB
testcase_21 AC 151 ms
40,940 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