結果

問題 No.63 ポッキーゲーム
ユーザー bellbell
提出日時 2021-02-12 19:45:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 336 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 1,855 ms
コンパイル使用メモリ 73,604 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-07-19 18:33:11
合計ジャッジ時間 5,914 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,836 KB
testcase_01 AC 100 ms
40,112 KB
testcase_02 AC 101 ms
39,916 KB
testcase_03 AC 108 ms
39,928 KB
testcase_04 AC 105 ms
40,180 KB
testcase_05 AC 108 ms
41,044 KB
testcase_06 AC 120 ms
41,012 KB
testcase_07 AC 117 ms
41,024 KB
testcase_08 AC 122 ms
41,444 KB
testcase_09 AC 124 ms
41,296 KB
testcase_10 AC 115 ms
41,160 KB
testcase_11 AC 336 ms
40,924 KB
testcase_12 AC 108 ms
39,856 KB
testcase_13 AC 334 ms
40,136 KB
testcase_14 AC 126 ms
41,176 KB
testcase_15 AC 135 ms
41,104 KB
testcase_16 AC 122 ms
41,048 KB
testcase_17 AC 318 ms
41,104 KB
testcase_18 AC 107 ms
40,140 KB
testcase_19 AC 148 ms
41,252 KB
testcase_20 AC 126 ms
40,712 KB
testcase_21 AC 139 ms
41,156 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