結果

問題 No.63 ポッキーゲーム
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 22:07:06
言語 Java
(openjdk 23)
結果
AC  
実行時間 317 ms / 5,000 ms
コード長 558 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 51,112 KB
最終ジャッジ日時 2024-12-24 05:29:02
合計ジャッジ時間 5,212 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
49,992 KB
testcase_01 AC 56 ms
50,224 KB
testcase_02 AC 55 ms
50,096 KB
testcase_03 AC 56 ms
50,108 KB
testcase_04 AC 56 ms
50,224 KB
testcase_05 AC 56 ms
50,012 KB
testcase_06 AC 56 ms
50,016 KB
testcase_07 AC 58 ms
50,104 KB
testcase_08 AC 56 ms
50,304 KB
testcase_09 AC 66 ms
50,508 KB
testcase_10 AC 73 ms
51,032 KB
testcase_11 AC 317 ms
50,968 KB
testcase_12 AC 76 ms
51,028 KB
testcase_13 AC 313 ms
51,112 KB
testcase_14 AC 75 ms
50,936 KB
testcase_15 AC 77 ms
50,988 KB
testcase_16 AC 69 ms
50,968 KB
testcase_17 AC 300 ms
50,968 KB
testcase_18 AC 68 ms
50,608 KB
testcase_19 AC 103 ms
50,752 KB
testcase_20 AC 79 ms
50,872 KB
testcase_21 AC 83 ms
50,832 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