結果

問題 No.63 ポッキーゲーム
ユーザー YOSHIYOSHI
提出日時 2021-02-26 00:08:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 4,009 ms
コンパイル使用メモリ 79,288 KB
実行使用メモリ 51,244 KB
最終ジャッジ日時 2024-10-01 14:58:36
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,492 KB
testcase_01 AC 65 ms
37,496 KB
testcase_02 AC 51 ms
37,056 KB
testcase_03 WA -
testcase_04 AC 51 ms
37,644 KB
testcase_05 WA -
testcase_06 AC 51 ms
37,516 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 54 ms
37,756 KB
testcase_10 WA -
testcase_11 AC 49 ms
37,056 KB
testcase_12 AC 54 ms
37,636 KB
testcase_13 AC 53 ms
37,468 KB
testcase_14 AC 54 ms
37,704 KB
testcase_15 AC 64 ms
37,420 KB
testcase_16 AC 52 ms
37,592 KB
testcase_17 AC 50 ms
37,720 KB
testcase_18 AC 50 ms
37,188 KB
testcase_19 AC 53 ms
37,188 KB
testcase_20 AC 51 ms
37,512 KB
testcase_21 AC 51 ms
37,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

public class No00000063_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int[] arr = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
        int i = (arr[0] / arr[1]) %  2 == 0 ? 1 : 0;
		System.out.println(arr[0] <= 2 * arr[1] ? 0 : ((arr[0] / arr[1] / 2 - i) * arr[1]));

	}

}
0