結果

問題 No.63 ポッキーゲーム
ユーザー yagi2yagi2
提出日時 2017-04-25 17:11:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 325 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-12-24 05:28:41
合計ジャッジ時間 5,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,188 KB
testcase_01 AC 98 ms
40,204 KB
testcase_02 AC 120 ms
41,152 KB
testcase_03 AC 117 ms
40,956 KB
testcase_04 AC 120 ms
41,152 KB
testcase_05 AC 114 ms
40,868 KB
testcase_06 AC 113 ms
40,940 KB
testcase_07 AC 112 ms
41,136 KB
testcase_08 AC 113 ms
41,060 KB
testcase_09 AC 97 ms
39,764 KB
testcase_10 AC 120 ms
41,436 KB
testcase_11 AC 116 ms
41,172 KB
testcase_12 AC 119 ms
41,208 KB
testcase_13 AC 114 ms
41,132 KB
testcase_14 AC 122 ms
41,572 KB
testcase_15 AC 118 ms
41,296 KB
testcase_16 AC 125 ms
41,268 KB
testcase_17 AC 129 ms
41,236 KB
testcase_18 AC 103 ms
40,204 KB
testcase_19 AC 112 ms
41,128 KB
testcase_20 AC 120 ms
41,176 KB
testcase_21 AC 115 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long L = Long.parseLong(sc.next());
        int K = Integer.parseInt(sc.next());

        int num = (int)Math.ceil(L / 2.0 / K);
        System.out.println(K * (num - 1));
    }
}
0