結果

問題 No.63 ポッキーゲーム
ユーザー heyanxxheyanxx
提出日時 2019-07-05 16:35:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 5,000 ms
コード長 697 bytes
コンパイル時間 3,589 ms
コンパイル使用メモリ 73,640 KB
実行使用メモリ 37,608 KB
最終ジャッジ日時 2024-09-21 21:40:07
合計ジャッジ時間 6,620 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,884 KB
testcase_01 AC 53 ms
37,192 KB
testcase_02 AC 54 ms
37,084 KB
testcase_03 AC 54 ms
36,404 KB
testcase_04 AC 54 ms
36,548 KB
testcase_05 AC 53 ms
37,152 KB
testcase_06 AC 55 ms
36,900 KB
testcase_07 AC 56 ms
36,900 KB
testcase_08 AC 52 ms
37,064 KB
testcase_09 AC 64 ms
36,640 KB
testcase_10 AC 66 ms
37,284 KB
testcase_11 AC 310 ms
37,540 KB
testcase_12 AC 71 ms
37,592 KB
testcase_13 AC 311 ms
37,404 KB
testcase_14 AC 72 ms
37,284 KB
testcase_15 AC 72 ms
37,320 KB
testcase_16 AC 70 ms
37,300 KB
testcase_17 AC 301 ms
37,608 KB
testcase_18 AC 62 ms
37,128 KB
testcase_19 AC 96 ms
37,152 KB
testcase_20 AC 72 ms
37,340 KB
testcase_21 AC 75 ms
37,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

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

public class Yukicoder63 {

	public static void main(String[] args) throws IOException {
		// TODO 自動生成されたメソッド・スタブ
		String[]str=input();
		int L=Integer.parseInt(str[0]);
		int K=Integer.parseInt(str[1]);
		int count=0;
		
		while(true) {
			L=L-2*K;
			if(L<=0) {
				System.out.println(count);
				return;
			}
			count+=K;
		}
		

	}

	public static  String[] input() throws IOException {
		BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
		
		String str=br.readLine();
		String[]str2=str.split(" ");
		
		return str2;
	}
}
0