結果

問題 No.63 ポッキーゲーム
ユーザー koukonkokoukonko
提出日時 2015-12-07 17:22:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 268 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 1,669 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 37,748 KB
最終ジャッジ日時 2024-06-06 13:09:32
合計ジャッジ時間 4,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,888 KB
testcase_01 AC 45 ms
36,792 KB
testcase_02 AC 47 ms
36,652 KB
testcase_03 AC 47 ms
36,664 KB
testcase_04 AC 47 ms
36,756 KB
testcase_05 AC 46 ms
37,008 KB
testcase_06 AC 47 ms
37,012 KB
testcase_07 AC 47 ms
36,800 KB
testcase_08 AC 48 ms
36,984 KB
testcase_09 AC 53 ms
36,776 KB
testcase_10 AC 60 ms
37,620 KB
testcase_11 AC 268 ms
37,400 KB
testcase_12 AC 65 ms
37,408 KB
testcase_13 AC 267 ms
37,748 KB
testcase_14 AC 63 ms
37,268 KB
testcase_15 AC 62 ms
37,504 KB
testcase_16 AC 62 ms
37,328 KB
testcase_17 AC 255 ms
37,432 KB
testcase_18 AC 61 ms
37,024 KB
testcase_19 AC 91 ms
37,680 KB
testcase_20 AC 63 ms
37,552 KB
testcase_21 AC 69 ms
37,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			String[] box = buff.readLine().split(" ");
			int L = Integer.parseInt(box[0]);
			int K = Integer.parseInt(box[1]);
			int count = 0;
			while(L - K * 2 > 0){
				count++;
				L -= K *2;
			}
			System.out.println(count * K);
		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0