結果

問題 No.63 ポッキーゲーム
ユーザー soujikisoujiki
提出日時 2015-04-29 17:59:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 316 bytes
コンパイル時間 3,224 ms
コンパイル使用メモリ 74,048 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-06-06 12:59:52
合計ジャッジ時間 7,161 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,756 KB
testcase_01 AC 124 ms
54,248 KB
testcase_02 AC 117 ms
54,044 KB
testcase_03 AC 121 ms
53,656 KB
testcase_04 AC 120 ms
54,156 KB
testcase_05 AC 116 ms
52,880 KB
testcase_06 AC 117 ms
54,016 KB
testcase_07 AC 116 ms
52,652 KB
testcase_08 AC 111 ms
52,872 KB
testcase_09 AC 123 ms
53,732 KB
testcase_10 AC 126 ms
54,008 KB
testcase_11 AC 350 ms
54,056 KB
testcase_12 AC 127 ms
54,084 KB
testcase_13 AC 339 ms
52,844 KB
testcase_14 AC 127 ms
54,052 KB
testcase_15 AC 131 ms
53,924 KB
testcase_16 AC 113 ms
52,876 KB
testcase_17 AC 338 ms
54,020 KB
testcase_18 AC 117 ms
52,988 KB
testcase_19 AC 151 ms
53,764 KB
testcase_20 AC 129 ms
54,172 KB
testcase_21 AC 139 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_63{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int L = stdIn.nextInt();
		int K = stdIn.nextInt();
		int count = 0;
		while(true){
			if(L<=2*K){
				System.out.println(count*K);
				break;
			}
			L -= 2*K;
			count++; 
		}
	}
}
0