結果

問題 No.63 ポッキーゲーム
ユーザー kano_townkano_town
提出日時 2014-11-19 09:48:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 269 bytes
コンパイル時間 3,001 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-06-06 12:55:19
合計ジャッジ時間 6,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,296 KB
testcase_01 AC 106 ms
40,968 KB
testcase_02 AC 123 ms
41,120 KB
testcase_03 AC 112 ms
41,328 KB
testcase_04 AC 118 ms
41,308 KB
testcase_05 AC 125 ms
41,332 KB
testcase_06 AC 122 ms
41,576 KB
testcase_07 AC 107 ms
40,948 KB
testcase_08 AC 116 ms
40,116 KB
testcase_09 AC 121 ms
40,956 KB
testcase_10 AC 125 ms
40,952 KB
testcase_11 AC 121 ms
41,512 KB
testcase_12 AC 125 ms
41,352 KB
testcase_13 AC 111 ms
40,992 KB
testcase_14 AC 110 ms
41,252 KB
testcase_15 AC 121 ms
40,996 KB
testcase_16 AC 121 ms
41,360 KB
testcase_17 AC 129 ms
41,208 KB
testcase_18 AC 123 ms
41,124 KB
testcase_19 AC 113 ms
41,688 KB
testcase_20 AC 121 ms
41,036 KB
testcase_21 AC 118 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder63 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int K = sc.nextInt();

		System.out.println((int)(K * (Math.ceil(L / (2.0 * K)) - 1)));
	}

}
0