結果

問題 No.63 ポッキーゲーム
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 22:07:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 558 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 73,000 KB
実行使用メモリ 37,836 KB
最終ジャッジ日時 2024-06-06 13:36:35
合計ジャッジ時間 4,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,712 KB
testcase_01 AC 49 ms
36,740 KB
testcase_02 AC 49 ms
36,992 KB
testcase_03 AC 48 ms
37,168 KB
testcase_04 AC 49 ms
36,976 KB
testcase_05 AC 50 ms
36,640 KB
testcase_06 AC 50 ms
36,720 KB
testcase_07 AC 51 ms
36,744 KB
testcase_08 AC 50 ms
36,720 KB
testcase_09 AC 58 ms
36,764 KB
testcase_10 AC 67 ms
37,540 KB
testcase_11 AC 276 ms
37,740 KB
testcase_12 AC 66 ms
37,236 KB
testcase_13 AC 269 ms
37,836 KB
testcase_14 AC 64 ms
37,280 KB
testcase_15 AC 66 ms
37,488 KB
testcase_16 AC 63 ms
37,488 KB
testcase_17 AC 258 ms
37,484 KB
testcase_18 AC 60 ms
36,972 KB
testcase_19 AC 89 ms
37,640 KB
testcase_20 AC 64 ms
37,280 KB
testcase_21 AC 71 ms
37,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String[] inputs = reader.readLine().split(" ");
        long L = Long.parseLong(inputs[0]);
        int K = Integer.parseInt(inputs[1]);

        int yuu = 0;
        while (2*K < L) {
            yuu += K;
            L -= 2 * K;
        }

        System.out.println(yuu);

    }

}
0