結果

問題 No.63 ポッキーゲーム
ユーザー dazydazy
提出日時 2016-09-03 18:01:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 3,434 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 43,332 KB
最終ジャッジ日時 2024-12-24 05:15:49
合計ジャッジ時間 6,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
43,184 KB
testcase_01 AC 117 ms
43,028 KB
testcase_02 AC 111 ms
42,664 KB
testcase_03 AC 112 ms
42,852 KB
testcase_04 AC 106 ms
41,724 KB
testcase_05 AC 126 ms
43,056 KB
testcase_06 AC 117 ms
42,920 KB
testcase_07 AC 127 ms
43,016 KB
testcase_08 AC 119 ms
42,956 KB
testcase_09 AC 119 ms
43,152 KB
testcase_10 AC 123 ms
43,332 KB
testcase_11 AC 114 ms
42,892 KB
testcase_12 AC 123 ms
42,688 KB
testcase_13 AC 121 ms
42,740 KB
testcase_14 AC 119 ms
42,964 KB
testcase_15 AC 120 ms
42,592 KB
testcase_16 AC 124 ms
43,216 KB
testcase_17 AC 123 ms
43,008 KB
testcase_18 AC 111 ms
41,908 KB
testcase_19 AC 119 ms
42,932 KB
testcase_20 AC 127 ms
42,716 KB
testcase_21 AC 119 ms
42,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int L = scan.nextInt();
        int K = scan.nextInt();
        if (L < 1||L > 1000000000||K < 1||K > 50) System.exit(1);

        System.out.println((L-1)/(2*K) * K);
    }
}
0