結果

問題 No.63 ポッキーゲーム
ユーザー jimanojimano
提出日時 2016-07-16 21:47:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 395 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 3,217 ms
コンパイル使用メモリ 73,612 KB
実行使用メモリ 38,564 KB
最終ジャッジ日時 2024-06-06 13:23:22
合計ジャッジ時間 6,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,164 KB
testcase_01 AC 48 ms
36,908 KB
testcase_02 AC 48 ms
36,736 KB
testcase_03 AC 47 ms
36,648 KB
testcase_04 AC 48 ms
36,836 KB
testcase_05 AC 48 ms
36,512 KB
testcase_06 AC 47 ms
37,056 KB
testcase_07 AC 48 ms
36,648 KB
testcase_08 AC 49 ms
36,464 KB
testcase_09 AC 58 ms
36,944 KB
testcase_10 AC 66 ms
38,564 KB
testcase_11 AC 395 ms
37,804 KB
testcase_12 AC 66 ms
37,764 KB
testcase_13 AC 383 ms
37,484 KB
testcase_14 AC 70 ms
37,676 KB
testcase_15 AC 64 ms
37,356 KB
testcase_16 AC 73 ms
37,828 KB
testcase_17 AC 363 ms
37,548 KB
testcase_18 AC 58 ms
37,076 KB
testcase_19 AC 104 ms
37,632 KB
testcase_20 AC 69 ms
37,580 KB
testcase_21 AC 79 ms
37,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No0063 {
	public static void main(String[] args) {
		try (BufferedReader br = 
				new BufferedReader(new InputStreamReader(System.in))) {
			String[] str = br.readLine().split(" ");
			int L = Integer.parseInt(str[0]);
			int K = Integer.parseInt(str[1]);
			int cnt;
			
			for(cnt = 0; L > (K * 2); cnt++){
				L -= K * 2;
			}
	        System.out.println(K * cnt);
	        
		} catch (IOException e) {
			e.printStackTrace();
		}
    }
}
0