結果

問題 No.63 ポッキーゲーム
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-08 15:06:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 3,244 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-06-26 20:22:33
合計ジャッジ時間 7,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,120 KB
testcase_01 AC 132 ms
54,096 KB
testcase_02 AC 129 ms
53,984 KB
testcase_03 AC 132 ms
54,060 KB
testcase_04 AC 137 ms
54,084 KB
testcase_05 AC 135 ms
54,080 KB
testcase_06 AC 133 ms
53,968 KB
testcase_07 AC 131 ms
54,020 KB
testcase_08 AC 131 ms
54,120 KB
testcase_09 AC 131 ms
54,112 KB
testcase_10 AC 137 ms
53,836 KB
testcase_11 AC 132 ms
54,096 KB
testcase_12 AC 131 ms
54,052 KB
testcase_13 AC 132 ms
54,028 KB
testcase_14 AC 134 ms
54,168 KB
testcase_15 AC 131 ms
54,092 KB
testcase_16 AC 136 ms
54,212 KB
testcase_17 AC 137 ms
53,992 KB
testcase_18 AC 132 ms
53,892 KB
testcase_19 AC 129 ms
53,884 KB
testcase_20 AC 115 ms
52,744 KB
testcase_21 AC 131 ms
54,144 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 % (K * 2) == 0) {
			System.out.println((L / K / 2 - 1) * K);
		} else {
			System.out.println(L / K / 2 * K);
		}
	}

}
0