結果

問題 No.63 ポッキーゲーム
ユーザー yuuki121yuuki121
提出日時 2020-12-29 23:59:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 333 ms / 5,000 ms
コード長 543 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 79,304 KB
実行使用メモリ 51,496 KB
最終ジャッジ日時 2024-10-06 08:45:36
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
50,460 KB
testcase_01 AC 60 ms
50,820 KB
testcase_02 AC 62 ms
50,476 KB
testcase_03 AC 62 ms
51,196 KB
testcase_04 AC 62 ms
50,700 KB
testcase_05 AC 62 ms
50,760 KB
testcase_06 AC 65 ms
50,984 KB
testcase_07 AC 66 ms
51,196 KB
testcase_08 AC 64 ms
50,848 KB
testcase_09 AC 69 ms
51,296 KB
testcase_10 AC 71 ms
51,312 KB
testcase_11 AC 333 ms
51,436 KB
testcase_12 AC 73 ms
51,316 KB
testcase_13 AC 332 ms
51,496 KB
testcase_14 AC 72 ms
51,420 KB
testcase_15 AC 71 ms
51,264 KB
testcase_16 AC 68 ms
51,220 KB
testcase_17 AC 316 ms
51,308 KB
testcase_18 AC 67 ms
51,396 KB
testcase_19 AC 101 ms
51,376 KB
testcase_20 AC 72 ms
51,212 KB
testcase_21 AC 76 ms
51,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

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

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

		// L K
		int[] lk = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		int numL = lk[0];
		int numK = lk[1];

		int count = 0;

		while (numL > numK * 2 * count) {
			count++;
		}

		System.out.println(numK * (count - 1));

	}

}
0