結果

問題 No.63 ポッキーゲーム
ユーザー TakaTaka
提出日時 2016-04-09 16:38:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-06 13:17:20
合計ジャッジ時間 5,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,960 KB
testcase_01 AC 102 ms
41,088 KB
testcase_02 AC 103 ms
39,928 KB
testcase_03 AC 112 ms
39,684 KB
testcase_04 AC 115 ms
40,956 KB
testcase_05 AC 113 ms
41,248 KB
testcase_06 AC 101 ms
40,960 KB
testcase_07 AC 104 ms
41,492 KB
testcase_08 AC 110 ms
41,424 KB
testcase_09 AC 105 ms
41,140 KB
testcase_10 AC 109 ms
41,580 KB
testcase_11 AC 350 ms
41,180 KB
testcase_12 AC 112 ms
41,288 KB
testcase_13 AC 347 ms
41,244 KB
testcase_14 AC 122 ms
40,968 KB
testcase_15 AC 125 ms
41,344 KB
testcase_16 AC 115 ms
41,428 KB
testcase_17 AC 345 ms
41,248 KB
testcase_18 AC 114 ms
41,460 KB
testcase_19 AC 149 ms
41,168 KB
testcase_20 AC 116 ms
41,104 KB
testcase_21 AC 135 ms
41,308 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;
		
		if(L<=K || L==K*2)	yuu=0;
		else if(nokori<=K*2){
			yuu=K;
		}else{
			while(nokori>K*2){
				nokori = L-K*2;
				yuu += K;
				L=nokori;
			}
		}
		
        System.out.println(yuu);
    }
}
0