結果

問題 No.63 ポッキーゲーム
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-08 15:04:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 75,448 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-06-26 20:22:15
合計ジャッジ時間 7,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,320 KB
testcase_01 AC 131 ms
53,976 KB
testcase_02 WA -
testcase_03 AC 131 ms
54,116 KB
testcase_04 AC 130 ms
54,352 KB
testcase_05 AC 131 ms
53,884 KB
testcase_06 AC 131 ms
53,956 KB
testcase_07 AC 131 ms
54,120 KB
testcase_08 AC 128 ms
54,096 KB
testcase_09 AC 133 ms
53,952 KB
testcase_10 AC 130 ms
53,952 KB
testcase_11 AC 132 ms
54,156 KB
testcase_12 AC 133 ms
54,152 KB
testcase_13 AC 135 ms
54,100 KB
testcase_14 AC 134 ms
54,124 KB
testcase_15 AC 130 ms
54,188 KB
testcase_16 AC 131 ms
53,980 KB
testcase_17 AC 133 ms
54,068 KB
testcase_18 AC 133 ms
54,392 KB
testcase_19 AC 133 ms
53,984 KB
testcase_20 AC 131 ms
54,108 KB
testcase_21 AC 119 ms
52,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

public class No63 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int K = sc.nextInt();

		if (L / 2 <= K) {
			System.out.println(0);
		} else if (L % (K * 2) == 0) {
			System.out.println((L / K / 2 - 1) * K);
		} else {
			System.out.println(L / K / 2 * K);
		}
	}

}
0