結果

問題 No.63 ポッキーゲーム
ユーザー gomagoma
提出日時 2017-09-23 13:55:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 340 ms / 5,000 ms
コード長 313 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-06-06 13:47:12
合計ジャッジ時間 5,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,880 KB
testcase_01 AC 96 ms
39,908 KB
testcase_02 AC 104 ms
41,152 KB
testcase_03 AC 104 ms
39,800 KB
testcase_04 AC 105 ms
39,668 KB
testcase_05 AC 103 ms
40,192 KB
testcase_06 AC 99 ms
39,828 KB
testcase_07 AC 108 ms
41,064 KB
testcase_08 AC 104 ms
40,920 KB
testcase_09 AC 95 ms
39,608 KB
testcase_10 AC 110 ms
40,696 KB
testcase_11 AC 308 ms
40,268 KB
testcase_12 AC 116 ms
40,936 KB
testcase_13 AC 340 ms
41,192 KB
testcase_14 AC 114 ms
40,648 KB
testcase_15 AC 112 ms
39,932 KB
testcase_16 AC 106 ms
39,944 KB
testcase_17 AC 290 ms
39,944 KB
testcase_18 AC 101 ms
40,044 KB
testcase_19 AC 138 ms
41,280 KB
testcase_20 AC 107 ms
40,116 KB
testcase_21 AC 108 ms
39,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int k = sc.nextInt();
		int m = 0, count = 0, ans = 0;
		while (l > 2 * k) {
			l -= 2 * k;
			count++;
		}
		ans = count * k;
		System.out.println(ans);
	}
}
0