結果

問題 No.63 ポッキーゲーム
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 22:27:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 3,392 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-06-06 13:50:52
合計ジャッジ時間 6,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,148 KB
testcase_01 AC 105 ms
52,856 KB
testcase_02 AC 121 ms
53,852 KB
testcase_03 AC 114 ms
53,196 KB
testcase_04 AC 123 ms
54,204 KB
testcase_05 AC 122 ms
54,060 KB
testcase_06 AC 118 ms
53,664 KB
testcase_07 AC 117 ms
53,916 KB
testcase_08 AC 118 ms
53,936 KB
testcase_09 AC 108 ms
52,820 KB
testcase_10 AC 121 ms
53,968 KB
testcase_11 AC 119 ms
53,676 KB
testcase_12 AC 121 ms
54,076 KB
testcase_13 AC 119 ms
54,104 KB
testcase_14 AC 128 ms
54,060 KB
testcase_15 AC 104 ms
52,596 KB
testcase_16 AC 114 ms
53,832 KB
testcase_17 AC 111 ms
53,296 KB
testcase_18 AC 109 ms
52,844 KB
testcase_19 AC 122 ms
54,024 KB
testcase_20 AC 122 ms
54,108 KB
testcase_21 AC 118 ms
54,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No63 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int pocky = s.nextInt();
        int bite = s.nextInt();
        int eachBite = bite * 2;
        int biteTime = pocky / eachBite;
        if (pocky % eachBite == 0) {
            biteTime--;
        }
        System.out.println(biteTime * bite);
    }
}
0