結果

問題 No.63 ポッキーゲーム
ユーザー kano_townkano_town
提出日時 2014-11-19 09:39:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 499 ms / 5,000 ms
コード長 326 bytes
コンパイル時間 3,529 ms
コンパイル使用メモリ 76,664 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-06-06 12:55:06
合計ジャッジ時間 8,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,120 KB
testcase_01 AC 120 ms
41,488 KB
testcase_02 AC 123 ms
41,436 KB
testcase_03 AC 126 ms
41,084 KB
testcase_04 AC 122 ms
40,164 KB
testcase_05 AC 125 ms
41,384 KB
testcase_06 AC 124 ms
41,408 KB
testcase_07 AC 123 ms
41,072 KB
testcase_08 AC 126 ms
41,184 KB
testcase_09 AC 130 ms
41,256 KB
testcase_10 AC 132 ms
41,496 KB
testcase_11 AC 499 ms
41,260 KB
testcase_12 AC 134 ms
41,204 KB
testcase_13 AC 490 ms
41,272 KB
testcase_14 AC 120 ms
41,172 KB
testcase_15 AC 128 ms
39,976 KB
testcase_16 AC 113 ms
41,516 KB
testcase_17 AC 462 ms
41,340 KB
testcase_18 AC 129 ms
41,100 KB
testcase_19 AC 178 ms
41,124 KB
testcase_20 AC 136 ms
41,260 KB
testcase_21 AC 142 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder63 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int K = sc.nextInt();
		int res = 0;
		
		while(L > 0) {
			L -= K * 2;
			if (L > 0) {
				res += K;
			}
		}
		System.out.println(res);
	}

}
0