結果

問題 No.63 ポッキーゲーム
ユーザー TakaTaka
提出日時 2016-04-09 16:32:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 8,592 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-10-04 05:05:55
合計ジャッジ時間 8,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,184 KB
testcase_01 AC 122 ms
53,856 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 111 ms
52,868 KB
testcase_05 AC 142 ms
52,892 KB
testcase_06 AC 110 ms
52,984 KB
testcase_07 AC 125 ms
53,832 KB
testcase_08 AC 129 ms
54,056 KB
testcase_09 AC 135 ms
54,152 KB
testcase_10 AC 136 ms
54,056 KB
testcase_11 AC 403 ms
53,136 KB
testcase_12 AC 138 ms
54,060 KB
testcase_13 AC 414 ms
53,944 KB
testcase_14 AC 138 ms
54,116 KB
testcase_15 AC 138 ms
54,148 KB
testcase_16 AC 134 ms
53,724 KB
testcase_17 AC 378 ms
52,852 KB
testcase_18 AC 146 ms
53,924 KB
testcase_19 AC 164 ms
53,708 KB
testcase_20 AC 134 ms
54,196 KB
testcase_21 AC 146 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
		
        Scanner sc = new Scanner(System.in);
		
       	int L = sc.nextInt();
        int K = sc.nextInt();
		
		int nokori=L-K*2;
		int yuu=0;
		
		while(nokori>K*2){
			nokori = L-K*2;
			yuu += K;
			L=nokori;
		}
		
        System.out.println(yuu);
    }
}
0