結果

問題 No.63 ポッキーゲーム
ユーザー l1267976l1267976
提出日時 2017-03-15 23:23:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 441 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 3,083 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-06-06 13:32:57
合計ジャッジ時間 7,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,280 KB
testcase_01 AC 115 ms
41,340 KB
testcase_02 AC 105 ms
40,900 KB
testcase_03 AC 104 ms
41,264 KB
testcase_04 AC 106 ms
40,836 KB
testcase_05 AC 106 ms
40,928 KB
testcase_06 AC 106 ms
41,136 KB
testcase_07 AC 106 ms
41,080 KB
testcase_08 AC 114 ms
41,068 KB
testcase_09 AC 114 ms
41,388 KB
testcase_10 AC 117 ms
41,392 KB
testcase_11 AC 441 ms
41,236 KB
testcase_12 AC 120 ms
41,144 KB
testcase_13 AC 439 ms
41,288 KB
testcase_14 AC 114 ms
39,952 KB
testcase_15 AC 120 ms
41,320 KB
testcase_16 AC 113 ms
41,152 KB
testcase_17 AC 412 ms
40,256 KB
testcase_18 AC 113 ms
41,464 KB
testcase_19 AC 159 ms
41,060 KB
testcase_20 AC 108 ms
40,048 KB
testcase_21 AC 118 ms
40,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No63 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int l = sc.nextInt();
        int k = sc.nextInt();

        int remain = l;
        int cnt = 0;

        while (remain > 0) {
            remain -= 2 * k;
            cnt++;
        }

        int result = k * (cnt - 1);
        System.out.println(result);

        sc.close();
    }

}
0