結果

問題 No.63 ポッキーゲーム
ユーザー marumaru
提出日時 2016-03-22 23:14:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 320 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-06 13:14:50
合計ジャッジ時間 6,899 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,952 KB
testcase_01 AC 114 ms
41,076 KB
testcase_02 AC 121 ms
41,372 KB
testcase_03 AC 126 ms
41,260 KB
testcase_04 AC 125 ms
41,424 KB
testcase_05 AC 118 ms
41,080 KB
testcase_06 AC 115 ms
41,380 KB
testcase_07 AC 112 ms
41,636 KB
testcase_08 AC 117 ms
41,076 KB
testcase_09 AC 118 ms
41,264 KB
testcase_10 AC 129 ms
41,292 KB
testcase_11 AC 332 ms
41,176 KB
testcase_12 AC 122 ms
41,048 KB
testcase_13 AC 323 ms
40,328 KB
testcase_14 AC 127 ms
40,244 KB
testcase_15 AC 122 ms
41,216 KB
testcase_16 AC 119 ms
41,000 KB
testcase_17 AC 296 ms
41,260 KB
testcase_18 AC 108 ms
40,284 KB
testcase_19 AC 143 ms
41,124 KB
testcase_20 AC 125 ms
41,424 KB
testcase_21 AC 129 ms
41,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_63 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int l = stdIn.nextInt();
		int k = stdIn.nextInt();
		
		int count = 0;
		
		while (l >= 2 * k + 1) {
			l = l - 2 * k;
			count++;
		}
		
		System.out.println(k * count);
	}
}
0