結果

問題 No.63 ポッキーゲーム
ユーザー jimanojimano
提出日時 2016-07-16 21:47:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 468 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 3,454 ms
コンパイル使用メモリ 73,396 KB
実行使用メモリ 37,660 KB
最終ジャッジ日時 2024-12-24 05:14:26
合計ジャッジ時間 7,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,704 KB
testcase_01 AC 55 ms
36,700 KB
testcase_02 AC 59 ms
36,892 KB
testcase_03 AC 57 ms
36,812 KB
testcase_04 AC 55 ms
36,812 KB
testcase_05 AC 55 ms
36,736 KB
testcase_06 AC 55 ms
36,732 KB
testcase_07 AC 57 ms
36,508 KB
testcase_08 AC 57 ms
36,496 KB
testcase_09 AC 69 ms
37,024 KB
testcase_10 AC 77 ms
37,544 KB
testcase_11 AC 461 ms
37,372 KB
testcase_12 AC 81 ms
37,408 KB
testcase_13 AC 468 ms
37,660 KB
testcase_14 AC 82 ms
37,616 KB
testcase_15 AC 81 ms
37,500 KB
testcase_16 AC 71 ms
37,404 KB
testcase_17 AC 443 ms
37,544 KB
testcase_18 AC 68 ms
37,144 KB
testcase_19 AC 127 ms
37,504 KB
testcase_20 AC 78 ms
37,596 KB
testcase_21 AC 90 ms
37,512 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