結果

問題 No.63 ポッキーゲーム
ユーザー omc-testomc-test
提出日時 2016-08-03 16:14:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 439 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 1,870 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 41,232 KB
最終ジャッジ日時 2024-06-06 13:24:03
合計ジャッジ時間 6,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,024 KB
testcase_01 AC 108 ms
41,176 KB
testcase_02 AC 98 ms
40,064 KB
testcase_03 AC 102 ms
40,408 KB
testcase_04 AC 109 ms
41,084 KB
testcase_05 AC 105 ms
41,016 KB
testcase_06 AC 100 ms
40,036 KB
testcase_07 AC 113 ms
41,232 KB
testcase_08 AC 99 ms
39,892 KB
testcase_09 AC 110 ms
41,108 KB
testcase_10 AC 110 ms
41,136 KB
testcase_11 AC 439 ms
40,764 KB
testcase_12 AC 114 ms
40,188 KB
testcase_13 AC 429 ms
40,136 KB
testcase_14 AC 110 ms
40,092 KB
testcase_15 AC 118 ms
41,168 KB
testcase_16 AC 108 ms
41,036 KB
testcase_17 AC 403 ms
40,188 KB
testcase_18 AC 107 ms
41,156 KB
testcase_19 AC 147 ms
40,432 KB
testcase_20 AC 117 ms
41,084 KB
testcase_21 AC 129 ms
41,008 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