結果

問題 No.63 ポッキーゲーム
ユーザー kuramukuramu
提出日時 2016-01-19 22:37:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 416 ms / 5,000 ms
コード長 653 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 37,744 KB
最終ジャッジ日時 2024-06-06 13:11:54
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,000 KB
testcase_01 AC 46 ms
37,008 KB
testcase_02 AC 48 ms
36,984 KB
testcase_03 AC 47 ms
36,840 KB
testcase_04 AC 47 ms
36,968 KB
testcase_05 AC 46 ms
36,748 KB
testcase_06 AC 46 ms
36,972 KB
testcase_07 AC 47 ms
37,152 KB
testcase_08 AC 49 ms
36,936 KB
testcase_09 AC 60 ms
36,948 KB
testcase_10 AC 66 ms
37,652 KB
testcase_11 AC 416 ms
37,560 KB
testcase_12 AC 67 ms
37,288 KB
testcase_13 AC 408 ms
37,480 KB
testcase_14 AC 69 ms
37,572 KB
testcase_15 AC 69 ms
37,416 KB
testcase_16 AC 61 ms
37,244 KB
testcase_17 AC 387 ms
37,612 KB
testcase_18 AC 61 ms
37,288 KB
testcase_19 AC 110 ms
37,304 KB
testcase_20 AC 69 ms
37,744 KB
testcase_21 AC 77 ms
37,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      String line = "";
	      try {

	    	  String[] temps = stdReader.readLine().split(" ");
	    	  int L = Integer.parseInt(temps[0]);
	    	  int K = Integer.parseInt(temps[1]);
	    	  int count = 0;
	    	  
	    	  while(L-2*(count+1)*K>0){
	    		  count++;
	    	  }
			  System.out.println(count*K);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0