結果

問題 No.63 ポッキーゲーム
ユーザー dazydazy
提出日時 2016-09-03 18:01:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 4,183 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-06-06 13:24:58
合計ジャッジ時間 6,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,532 KB
testcase_01 AC 123 ms
41,252 KB
testcase_02 AC 114 ms
41,528 KB
testcase_03 AC 104 ms
41,428 KB
testcase_04 AC 116 ms
40,996 KB
testcase_05 AC 103 ms
41,232 KB
testcase_06 AC 101 ms
41,400 KB
testcase_07 AC 113 ms
41,512 KB
testcase_08 AC 112 ms
41,132 KB
testcase_09 AC 103 ms
40,944 KB
testcase_10 AC 115 ms
41,260 KB
testcase_11 AC 108 ms
40,984 KB
testcase_12 AC 115 ms
39,920 KB
testcase_13 AC 105 ms
41,656 KB
testcase_14 AC 114 ms
41,428 KB
testcase_15 AC 110 ms
41,156 KB
testcase_16 AC 111 ms
41,224 KB
testcase_17 AC 117 ms
40,900 KB
testcase_18 AC 116 ms
41,108 KB
testcase_19 AC 118 ms
40,972 KB
testcase_20 AC 112 ms
41,300 KB
testcase_21 AC 114 ms
39,984 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