結果

問題 No.63 ポッキーゲーム
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-08 14:59:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 3,299 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-26 20:21:44
合計ジャッジ時間 6,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,132 KB
testcase_01 AC 128 ms
54,140 KB
testcase_02 WA -
testcase_03 AC 127 ms
53,964 KB
testcase_04 AC 127 ms
54,180 KB
testcase_05 AC 131 ms
53,896 KB
testcase_06 AC 134 ms
53,740 KB
testcase_07 AC 132 ms
53,960 KB
testcase_08 AC 131 ms
54,208 KB
testcase_09 AC 131 ms
54,012 KB
testcase_10 AC 129 ms
54,316 KB
testcase_11 AC 126 ms
53,880 KB
testcase_12 AC 129 ms
54,224 KB
testcase_13 WA -
testcase_14 AC 125 ms
54,088 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 131 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No63 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int K = sc.nextInt();

		if(L/2<=K) {
			System.out.println(0);
		}else {
			System.out.println(L/K/2*K);
		}
	}

}
0