結果

問題 No.63 ポッキーゲーム
ユーザー omc-testomc-test
提出日時 2016-08-03 16:14:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 470 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 47,808 KB
最終ジャッジ日時 2024-12-24 05:14:54
合計ジャッジ時間 6,369 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
46,176 KB
testcase_01 AC 117 ms
46,316 KB
testcase_02 AC 121 ms
46,076 KB
testcase_03 AC 120 ms
46,160 KB
testcase_04 AC 116 ms
46,296 KB
testcase_05 AC 117 ms
46,064 KB
testcase_06 AC 116 ms
46,244 KB
testcase_07 AC 103 ms
46,328 KB
testcase_08 AC 110 ms
46,840 KB
testcase_09 AC 122 ms
47,808 KB
testcase_10 AC 115 ms
47,268 KB
testcase_11 AC 455 ms
46,964 KB
testcase_12 AC 131 ms
46,288 KB
testcase_13 AC 470 ms
46,452 KB
testcase_14 AC 128 ms
46,616 KB
testcase_15 AC 126 ms
46,412 KB
testcase_16 AC 123 ms
46,396 KB
testcase_17 AC 453 ms
46,388 KB
testcase_18 AC 125 ms
45,956 KB
testcase_19 AC 166 ms
46,108 KB
testcase_20 AC 126 ms
46,284 KB
testcase_21 AC 136 ms
45,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long l = sc.nextLong();
		int k = sc.nextInt();
		sc.close();

		int eat = 0;
		int yuu = 0;
		while(eat < l){
			if(l <= eat + (k*2)) {
				break;
			}
			eat += k*2;
			yuu += k;
		}
		System.out.println(yuu);
	}
}
0