結果

問題 No.63 ポッキーゲーム
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 15:11:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 745 bytes
コンパイル時間 4,495 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 37,120 KB
最終ジャッジ日時 2024-04-28 06:41:33
合計ジャッジ時間 5,698 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,916 KB
testcase_01 AC 56 ms
36,880 KB
testcase_02 AC 52 ms
36,936 KB
testcase_03 AC 52 ms
36,628 KB
testcase_04 AC 55 ms
36,760 KB
testcase_05 AC 56 ms
36,728 KB
testcase_06 AC 53 ms
36,628 KB
testcase_07 AC 54 ms
36,940 KB
testcase_08 AC 55 ms
36,520 KB
testcase_09 AC 52 ms
36,904 KB
testcase_10 AC 52 ms
36,880 KB
testcase_11 AC 53 ms
36,604 KB
testcase_12 AC 54 ms
36,960 KB
testcase_13 AC 57 ms
37,100 KB
testcase_14 AC 55 ms
36,840 KB
testcase_15 AC 54 ms
37,084 KB
testcase_16 AC 55 ms
36,616 KB
testcase_17 AC 52 ms
36,576 KB
testcase_18 AC 56 ms
36,856 KB
testcase_19 AC 54 ms
37,052 KB
testcase_20 AC 55 ms
36,940 KB
testcase_21 AC 55 ms
37,120 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