結果

問題 No.63 ポッキーゲーム
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-21 10:37:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 334 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-06-06 13:50:44
合計ジャッジ時間 5,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,284 KB
testcase_01 AC 108 ms
41,280 KB
testcase_02 AC 111 ms
41,208 KB
testcase_03 AC 102 ms
41,060 KB
testcase_04 AC 116 ms
41,208 KB
testcase_05 AC 119 ms
41,180 KB
testcase_06 AC 111 ms
40,908 KB
testcase_07 AC 119 ms
41,428 KB
testcase_08 AC 112 ms
41,408 KB
testcase_09 AC 107 ms
40,048 KB
testcase_10 AC 113 ms
41,296 KB
testcase_11 AC 328 ms
41,388 KB
testcase_12 AC 108 ms
39,984 KB
testcase_13 AC 334 ms
41,148 KB
testcase_14 AC 119 ms
41,088 KB
testcase_15 AC 120 ms
41,540 KB
testcase_16 AC 102 ms
40,188 KB
testcase_17 AC 307 ms
40,176 KB
testcase_18 AC 124 ms
41,352 KB
testcase_19 AC 136 ms
40,056 KB
testcase_20 AC 118 ms
41,276 KB
testcase_21 AC 127 ms
41,168 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 ans = 0;
		while(l > 2 * k) {
			ans += k;
			l -= 2 * k;
		}
		System.out.println(ans);
 	}
}

0