結果

問題 No.63 ポッキーゲーム
ユーザー villachvillach
提出日時 2017-09-17 17:29:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 343 ms / 5,000 ms
コード長 316 bytes
コンパイル時間 3,691 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-12-24 05:40:31
合計ジャッジ時間 7,381 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,080 KB
testcase_01 AC 117 ms
41,228 KB
testcase_02 AC 126 ms
40,064 KB
testcase_03 AC 111 ms
40,620 KB
testcase_04 AC 132 ms
41,276 KB
testcase_05 AC 122 ms
41,108 KB
testcase_06 AC 120 ms
41,200 KB
testcase_07 AC 123 ms
40,076 KB
testcase_08 AC 120 ms
40,124 KB
testcase_09 AC 120 ms
41,108 KB
testcase_10 AC 108 ms
39,824 KB
testcase_11 AC 343 ms
41,280 KB
testcase_12 AC 135 ms
40,192 KB
testcase_13 AC 342 ms
41,404 KB
testcase_14 AC 113 ms
40,144 KB
testcase_15 AC 114 ms
40,568 KB
testcase_16 AC 123 ms
41,344 KB
testcase_17 AC 324 ms
40,096 KB
testcase_18 AC 126 ms
41,068 KB
testcase_19 AC 161 ms
41,280 KB
testcase_20 AC 128 ms
41,068 KB
testcase_21 AC 128 ms
41,052 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