結果

問題 No.63 ポッキーゲーム
ユーザー kuramukuramu
提出日時 2016-01-19 22:52:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 660 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 37,088 KB
最終ジャッジ日時 2024-06-06 13:12:05
合計ジャッジ時間 3,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
36,856 KB
testcase_01 AC 43 ms
37,048 KB
testcase_02 AC 44 ms
36,968 KB
testcase_03 AC 43 ms
36,924 KB
testcase_04 AC 43 ms
37,012 KB
testcase_05 AC 43 ms
36,644 KB
testcase_06 AC 44 ms
37,088 KB
testcase_07 AC 46 ms
36,756 KB
testcase_08 AC 43 ms
36,772 KB
testcase_09 AC 42 ms
36,772 KB
testcase_10 AC 42 ms
36,696 KB
testcase_11 AC 42 ms
36,968 KB
testcase_12 AC 45 ms
37,032 KB
testcase_13 AC 44 ms
36,968 KB
testcase_14 AC 47 ms
36,776 KB
testcase_15 AC 47 ms
36,772 KB
testcase_16 AC 44 ms
36,668 KB
testcase_17 AC 45 ms
37,020 KB
testcase_18 AC 46 ms
36,712 KB
testcase_19 AC 42 ms
36,896 KB
testcase_20 AC 42 ms
37,052 KB
testcase_21 AC 42 ms
36,644 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]);
	    	  if(L%(2*K) != 0){
	    		  System.out.println(L/(2*K)*K);
	    	  }else{
	    		  System.out.println((L/(2*K)-1)*K);
	    	  } 
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0