結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
50,760 KB
testcase_01 AC 64 ms
50,744 KB
testcase_02 AC 64 ms
50,664 KB
testcase_03 AC 65 ms
50,912 KB
testcase_04 AC 65 ms
50,740 KB
testcase_05 AC 63 ms
50,560 KB
testcase_06 AC 63 ms
50,576 KB
testcase_07 AC 66 ms
51,228 KB
testcase_08 AC 64 ms
50,996 KB
testcase_09 AC 69 ms
51,312 KB
testcase_10 AC 71 ms
51,312 KB
testcase_11 AC 350 ms
51,400 KB
testcase_12 AC 73 ms
51,228 KB
testcase_13 AC 353 ms
51,204 KB
testcase_14 AC 75 ms
51,480 KB
testcase_15 AC 74 ms
51,460 KB
testcase_16 AC 69 ms
51,320 KB
testcase_17 AC 333 ms
51,316 KB
testcase_18 AC 69 ms
51,308 KB
testcase_19 AC 106 ms
51,348 KB
testcase_20 AC 73 ms
51,196 KB
testcase_21 AC 81 ms
51,460 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