結果

問題 No.63 ポッキーゲーム
ユーザー bellbell
提出日時 2021-02-12 19:43:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 2,839 ms
コンパイル使用メモリ 80,012 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-07-19 18:31:46
合計ジャッジ時間 5,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,016 KB
testcase_01 AC 101 ms
40,072 KB
testcase_02 AC 122 ms
41,120 KB
testcase_03 AC 115 ms
40,980 KB
testcase_04 AC 118 ms
41,152 KB
testcase_05 AC 109 ms
40,932 KB
testcase_06 AC 115 ms
41,200 KB
testcase_07 AC 113 ms
40,960 KB
testcase_08 AC 103 ms
39,900 KB
testcase_09 AC 104 ms
40,064 KB
testcase_10 AC 124 ms
40,988 KB
testcase_11 AC 320 ms
40,148 KB
testcase_12 AC 115 ms
40,344 KB
testcase_13 WA -
testcase_14 AC 118 ms
41,028 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 132 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int L=sc.nextInt(); //90
        int K=sc.nextInt(); //20 *2
        int result=0;

        for(int i = K * 2; i <= L; ){
            if(K * 2 < L){
                result+=K;
            }
            i+=K*2;
        }
        System.out.println(result);

            sc.close();
		}
    }
0