結果

問題 No.63 ポッキーゲーム
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-09 21:09:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 73,608 KB
実行使用メモリ 41,772 KB
最終ジャッジ日時 2024-12-24 05:18:53
合計ジャッジ時間 6,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,164 KB
testcase_01 AC 138 ms
41,340 KB
testcase_02 AC 138 ms
41,444 KB
testcase_03 AC 137 ms
41,772 KB
testcase_04 AC 136 ms
41,344 KB
testcase_05 AC 136 ms
41,496 KB
testcase_06 AC 137 ms
41,472 KB
testcase_07 AC 142 ms
41,468 KB
testcase_08 AC 139 ms
41,308 KB
testcase_09 AC 141 ms
41,392 KB
testcase_10 AC 136 ms
41,416 KB
testcase_11 AC 136 ms
41,300 KB
testcase_12 AC 137 ms
41,236 KB
testcase_13 AC 139 ms
41,140 KB
testcase_14 AC 138 ms
41,336 KB
testcase_15 AC 140 ms
41,324 KB
testcase_16 AC 130 ms
40,092 KB
testcase_17 AC 139 ms
41,136 KB
testcase_18 AC 140 ms
41,160 KB
testcase_19 AC 144 ms
41,140 KB
testcase_20 AC 131 ms
40,056 KB
testcase_21 AC 137 ms
41,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int L = sc.nextInt();
        int K = sc.nextInt();
int r =L/(2*K);

if(L%(2*K)==0){
r=r-1;
}
int a=r*K;
        System.out.println(a);
    }
}
0