結果

問題 No.63 ポッキーゲーム
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 15:11:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 745 bytes
コンパイル時間 3,948 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 37,240 KB
最終ジャッジ日時 2024-11-16 19:54:19
合計ジャッジ時間 5,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,984 KB
testcase_01 AC 50 ms
36,500 KB
testcase_02 AC 49 ms
37,152 KB
testcase_03 AC 49 ms
37,172 KB
testcase_04 AC 49 ms
36,536 KB
testcase_05 AC 48 ms
36,768 KB
testcase_06 AC 49 ms
37,100 KB
testcase_07 AC 49 ms
36,544 KB
testcase_08 AC 49 ms
36,788 KB
testcase_09 AC 48 ms
36,988 KB
testcase_10 AC 48 ms
37,088 KB
testcase_11 AC 49 ms
36,908 KB
testcase_12 AC 48 ms
37,240 KB
testcase_13 AC 49 ms
36,796 KB
testcase_14 AC 48 ms
37,036 KB
testcase_15 AC 48 ms
36,920 KB
testcase_16 AC 50 ms
36,944 KB
testcase_17 AC 51 ms
36,924 KB
testcase_18 AC 49 ms
36,664 KB
testcase_19 AC 50 ms
36,644 KB
testcase_20 AC 50 ms
37,152 KB
testcase_21 AC 48 ms
36,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00063 {

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

		String[] input = new String[2];

		try {
			input = bufferedReader.readLine().split(" ");

			long length = Long.parseLong(input[0]);
			int eat = Integer.parseInt(input[1]);

			int ans = calculation(length,eat);

			System.out.println(ans);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public static int calculation(long length, int eat) {
		int cnt = 0;
		cnt = (int) (length/(eat*2));
		if (length%(eat*2) == 0) {
			cnt--;
		}
		return cnt * eat;
	}

}
0