結果

問題 No.63 ポッキーゲーム
ユーザー gomagoma
提出日時 2017-09-23 13:56:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 370 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 3,676 ms
コンパイル使用メモリ 73,748 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-06-06 13:50:07
合計ジャッジ時間 6,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,180 KB
testcase_01 AC 131 ms
40,864 KB
testcase_02 AC 134 ms
41,120 KB
testcase_03 AC 133 ms
41,412 KB
testcase_04 AC 132 ms
41,236 KB
testcase_05 AC 135 ms
41,260 KB
testcase_06 AC 120 ms
39,892 KB
testcase_07 AC 123 ms
39,804 KB
testcase_08 AC 132 ms
40,960 KB
testcase_09 AC 135 ms
41,492 KB
testcase_10 AC 137 ms
41,092 KB
testcase_11 AC 370 ms
41,308 KB
testcase_12 AC 142 ms
41,412 KB
testcase_13 AC 370 ms
40,960 KB
testcase_14 AC 140 ms
41,104 KB
testcase_15 AC 139 ms
41,252 KB
testcase_16 AC 125 ms
40,028 KB
testcase_17 AC 358 ms
41,620 KB
testcase_18 AC 138 ms
41,144 KB
testcase_19 AC 154 ms
40,140 KB
testcase_20 AC 140 ms
41,284 KB
testcase_21 AC 145 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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