結果

問題 No.63 ポッキーゲーム
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-26 22:46:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 5,604 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-07-16 00:18:54
合計ジャッジ時間 9,946 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,016 KB
testcase_01 AC 108 ms
52,772 KB
testcase_02 AC 119 ms
54,248 KB
testcase_03 AC 107 ms
53,048 KB
testcase_04 AC 119 ms
53,932 KB
testcase_05 AC 121 ms
54,232 KB
testcase_06 AC 118 ms
54,028 KB
testcase_07 AC 110 ms
52,980 KB
testcase_08 AC 120 ms
53,860 KB
testcase_09 AC 133 ms
53,812 KB
testcase_10 AC 112 ms
53,104 KB
testcase_11 AC 389 ms
54,020 KB
testcase_12 AC 123 ms
53,608 KB
testcase_13 WA -
testcase_14 AC 128 ms
53,976 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 134 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No63 {

	public void run(){
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int K = sc.nextInt();
		int a=L-2*K;
		int count;
		
		if(a >0)
			count=1;
		else
			count=0;
		
		while( a > 0){
			 a=a-2*K;
			 if(a<0)
				 break;
			 count++;
		}
		
		System.out.println(count*K);
		
	}
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		new No63().run();
	}

}
0