結果

問題 No.63 ポッキーゲーム
ユーザー YOSHIYOSHI
提出日時 2021-02-26 00:00:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 3,251 ms
コンパイル使用メモリ 78,792 KB
実行使用メモリ 51,240 KB
最終ジャッジ日時 2024-10-01 14:55:05
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
46,828 KB
testcase_01 AC 49 ms
37,512 KB
testcase_02 AC 50 ms
37,576 KB
testcase_03 AC 51 ms
37,824 KB
testcase_04 AC 52 ms
37,488 KB
testcase_05 AC 52 ms
37,628 KB
testcase_06 AC 51 ms
37,212 KB
testcase_07 AC 52 ms
37,188 KB
testcase_08 AC 50 ms
37,620 KB
testcase_09 AC 50 ms
37,664 KB
testcase_10 AC 49 ms
37,308 KB
testcase_11 AC 51 ms
37,416 KB
testcase_12 AC 50 ms
37,696 KB
testcase_13 WA -
testcase_14 AC 50 ms
37,512 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 54 ms
37,708 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();
		System.out.println(arr[0] <= 2 * arr[1] ? 0 : (arr[0] / arr[1] / 2) * arr[1]);

	}

}
0