結果

問題 No.63 ポッキーゲーム
ユーザー jonki324jonki324
提出日時 2018-06-04 11:27:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 498 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 73,972 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-06-30 09:33:44
合計ジャッジ時間 7,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,480 KB
testcase_01 AC 128 ms
41,240 KB
testcase_02 AC 129 ms
41,068 KB
testcase_03 AC 126 ms
41,344 KB
testcase_04 AC 126 ms
41,124 KB
testcase_05 AC 124 ms
41,016 KB
testcase_06 AC 112 ms
40,572 KB
testcase_07 AC 128 ms
41,192 KB
testcase_08 AC 125 ms
41,364 KB
testcase_09 AC 115 ms
41,060 KB
testcase_10 AC 131 ms
41,276 KB
testcase_11 AC 491 ms
40,212 KB
testcase_12 AC 139 ms
41,024 KB
testcase_13 AC 498 ms
41,092 KB
testcase_14 AC 123 ms
40,068 KB
testcase_15 AC 134 ms
41,308 KB
testcase_16 AC 132 ms
41,332 KB
testcase_17 AC 477 ms
41,600 KB
testcase_18 AC 123 ms
41,072 KB
testcase_19 AC 180 ms
41,128 KB
testcase_20 AC 137 ms
41,404 KB
testcase_21 AC 133 ms
40,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int l = scan.nextInt();
        int k = scan.nextInt();
        int c = 0;
        while (true) {
            l -= 2 * k;
            if (l <= 0) {
                break;
            } else {
                c++;
            }
        }
        System.out.println(c * k);
        scan.close();
    }
}
0