結果

問題 No.63 ポッキーゲーム
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-04 13:33:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 329 bytes
コンパイル時間 1,921 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-06-06 13:13:42
合計ジャッジ時間 4,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,488 KB
testcase_01 AC 115 ms
41,220 KB
testcase_02 AC 116 ms
41,280 KB
testcase_03 AC 105 ms
40,708 KB
testcase_04 AC 108 ms
41,272 KB
testcase_05 AC 105 ms
40,860 KB
testcase_06 AC 106 ms
40,988 KB
testcase_07 AC 106 ms
41,376 KB
testcase_08 AC 106 ms
41,224 KB
testcase_09 AC 100 ms
40,280 KB
testcase_10 AC 106 ms
40,844 KB
testcase_11 AC 96 ms
39,972 KB
testcase_12 AC 104 ms
40,736 KB
testcase_13 AC 103 ms
39,896 KB
testcase_14 AC 110 ms
41,116 KB
testcase_15 AC 108 ms
40,976 KB
testcase_16 AC 106 ms
41,140 KB
testcase_17 AC 110 ms
41,140 KB
testcase_18 AC 101 ms
39,984 KB
testcase_19 AC 102 ms
40,116 KB
testcase_20 AC 99 ms
40,160 KB
testcase_21 AC 102 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		int l = in.nextInt();
		int k = in.nextInt();

		int temp = k * 2;
		if(l % temp == 0) {
			System.out.println((l / temp - 1) * k);
		} else {
			System.out.println(l / temp * k);
		}
	}
}
0