結果

問題 No.63 ポッキーゲーム
ユーザー hippolover02hippolover02
提出日時 2022-07-25 11:48:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 379 ms / 5,000 ms
コード長 367 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 74,896 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-07-07 08:58:47
合計ジャッジ時間 7,289 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,028 KB
testcase_01 AC 134 ms
41,036 KB
testcase_02 AC 132 ms
40,952 KB
testcase_03 AC 134 ms
41,048 KB
testcase_04 AC 134 ms
41,140 KB
testcase_05 AC 134 ms
41,108 KB
testcase_06 AC 133 ms
41,120 KB
testcase_07 AC 134 ms
41,316 KB
testcase_08 AC 132 ms
41,052 KB
testcase_09 AC 135 ms
41,292 KB
testcase_10 AC 139 ms
41,248 KB
testcase_11 AC 377 ms
41,212 KB
testcase_12 AC 140 ms
40,980 KB
testcase_13 AC 379 ms
41,088 KB
testcase_14 AC 144 ms
41,256 KB
testcase_15 AC 139 ms
41,420 KB
testcase_16 AC 133 ms
41,016 KB
testcase_17 AC 361 ms
41,164 KB
testcase_18 AC 138 ms
41,192 KB
testcase_19 AC 165 ms
41,204 KB
testcase_20 AC 139 ms
41,152 KB
testcase_21 AC 144 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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