結果

問題 No.63 ポッキーゲーム
ユーザー tentententen
提出日時 2020-11-10 12:29:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 77,420 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-07-22 17:24:27
合計ジャッジ時間 6,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
53,524 KB
testcase_01 AC 147 ms
53,940 KB
testcase_02 AC 146 ms
53,660 KB
testcase_03 AC 149 ms
53,948 KB
testcase_04 AC 146 ms
53,932 KB
testcase_05 AC 144 ms
53,968 KB
testcase_06 AC 143 ms
54,176 KB
testcase_07 AC 145 ms
53,652 KB
testcase_08 AC 146 ms
54,168 KB
testcase_09 AC 147 ms
54,036 KB
testcase_10 AC 145 ms
53,712 KB
testcase_11 AC 145 ms
53,644 KB
testcase_12 AC 144 ms
53,976 KB
testcase_13 AC 143 ms
53,996 KB
testcase_14 AC 147 ms
53,844 KB
testcase_15 AC 145 ms
54,004 KB
testcase_16 AC 144 ms
53,648 KB
testcase_17 AC 147 ms
54,152 KB
testcase_18 AC 149 ms
53,864 KB
testcase_19 AC 149 ms
54,144 KB
testcase_20 AC 149 ms
54,096 KB
testcase_21 AC 148 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int length = sc.nextInt();
        int k = sc.nextInt();
        int count = (length - 1) / (k * 2);
        System.out.println(count * k);
    }
}
0