結果

問題 No.63 ポッキーゲーム
ユーザー villachvillach
提出日時 2017-09-17 17:29:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 316 bytes
コンパイル時間 3,161 ms
コンパイル使用メモリ 75,088 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-06-06 13:46:21
合計ジャッジ時間 7,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,188 KB
testcase_01 AC 126 ms
41,128 KB
testcase_02 AC 108 ms
40,072 KB
testcase_03 AC 124 ms
41,488 KB
testcase_04 AC 108 ms
39,836 KB
testcase_05 AC 108 ms
39,996 KB
testcase_06 AC 122 ms
41,052 KB
testcase_07 AC 109 ms
39,824 KB
testcase_08 AC 110 ms
40,208 KB
testcase_09 AC 122 ms
41,028 KB
testcase_10 AC 126 ms
41,152 KB
testcase_11 AC 350 ms
41,600 KB
testcase_12 AC 123 ms
41,120 KB
testcase_13 AC 348 ms
41,004 KB
testcase_14 AC 125 ms
41,188 KB
testcase_15 AC 128 ms
41,308 KB
testcase_16 AC 109 ms
40,192 KB
testcase_17 AC 324 ms
40,032 KB
testcase_18 AC 124 ms
41,200 KB
testcase_19 AC 137 ms
40,156 KB
testcase_20 AC 128 ms
41,320 KB
testcase_21 AC 118 ms
40,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N63 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int k = sc.nextInt();
		int y = 0;
		while(true){
			l -= 2 * k;
			if(l <= 0){
				System.out.println(y);
				return;
			}
			y += k;
		}
	}
}
0