結果

問題 No.63 ポッキーゲーム
ユーザー kaoetayakaoetaya
提出日時 2016-11-21 19:54:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 2,989 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-06-06 13:28:52
合計ジャッジ時間 6,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,068 KB
testcase_01 AC 102 ms
40,048 KB
testcase_02 AC 100 ms
40,948 KB
testcase_03 AC 109 ms
41,452 KB
testcase_04 AC 114 ms
41,060 KB
testcase_05 AC 112 ms
41,096 KB
testcase_06 AC 112 ms
40,716 KB
testcase_07 AC 101 ms
39,944 KB
testcase_08 AC 113 ms
41,180 KB
testcase_09 AC 98 ms
39,932 KB
testcase_10 AC 116 ms
41,236 KB
testcase_11 AC 332 ms
40,432 KB
testcase_12 AC 110 ms
40,048 KB
testcase_13 AC 323 ms
41,008 KB
testcase_14 AC 112 ms
40,056 KB
testcase_15 AC 111 ms
40,056 KB
testcase_16 AC 117 ms
41,080 KB
testcase_17 AC 310 ms
41,152 KB
testcase_18 AC 105 ms
41,340 KB
testcase_19 AC 135 ms
39,996 KB
testcase_20 AC 107 ms
40,060 KB
testcase_21 AC 125 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		
		int l = s.nextInt(), k = s.nextInt();
		int ans =0;
		while((l - 2*k) >0){
			l -= 2 * k;
			ans += k;
		}
		System.out.println(ans);
    }
}
0