結果

問題 No.63 ポッキーゲーム
ユーザー GrenacheGrenache
提出日時 2015-06-30 20:27:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 416 bytes
コンパイル時間 3,025 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-12-24 04:52:15
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,336 KB
testcase_01 AC 110 ms
41,452 KB
testcase_02 AC 122 ms
41,212 KB
testcase_03 AC 129 ms
41,332 KB
testcase_04 AC 137 ms
41,572 KB
testcase_05 AC 123 ms
41,352 KB
testcase_06 AC 126 ms
41,264 KB
testcase_07 AC 121 ms
41,392 KB
testcase_08 AC 118 ms
41,320 KB
testcase_09 AC 112 ms
41,484 KB
testcase_10 AC 112 ms
41,192 KB
testcase_11 AC 121 ms
41,372 KB
testcase_12 AC 110 ms
41,224 KB
testcase_13 AC 115 ms
41,460 KB
testcase_14 AC 123 ms
41,504 KB
testcase_15 AC 123 ms
41,600 KB
testcase_16 AC 118 ms
41,176 KB
testcase_17 AC 127 ms
41,244 KB
testcase_18 AC 116 ms
41,332 KB
testcase_19 AC 124 ms
41,504 KB
testcase_20 AC 120 ms
41,092 KB
testcase_21 AC 124 ms
41,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder63 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int l = sc.nextInt();
        int k = sc.nextInt();

        if (l % (2 * k) == 0) {
        	System.out.println((l / (2 * k) - 1) * k);
        } else {
        	System.out.println(l / (2 * k) * k);
        }
        
        
        sc.close();
    }
}
0