結果

問題 No.63 ポッキーゲーム
ユーザー kaoetayakaoetaya
提出日時 2016-11-21 19:54:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 367 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-12-24 05:19:49
合計ジャッジ時間 7,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,400 KB
testcase_01 AC 123 ms
40,864 KB
testcase_02 AC 122 ms
41,076 KB
testcase_03 AC 120 ms
41,200 KB
testcase_04 AC 123 ms
41,216 KB
testcase_05 AC 118 ms
41,216 KB
testcase_06 AC 122 ms
41,088 KB
testcase_07 AC 126 ms
41,112 KB
testcase_08 AC 126 ms
41,328 KB
testcase_09 AC 132 ms
41,484 KB
testcase_10 AC 128 ms
41,284 KB
testcase_11 AC 354 ms
40,916 KB
testcase_12 AC 132 ms
41,680 KB
testcase_13 AC 367 ms
41,428 KB
testcase_14 AC 133 ms
40,920 KB
testcase_15 AC 135 ms
41,264 KB
testcase_16 AC 118 ms
40,120 KB
testcase_17 AC 342 ms
41,264 KB
testcase_18 AC 126 ms
41,408 KB
testcase_19 AC 152 ms
40,956 KB
testcase_20 AC 120 ms
40,132 KB
testcase_21 AC 140 ms
41,236 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