結果

問題 No.63 ポッキーゲーム
ユーザー ぴろずぴろず
提出日時 2014-12-12 09:48:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 2,671 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-06-06 12:56:01
合計ジャッジ時間 5,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,824 KB
testcase_01 AC 124 ms
53,708 KB
testcase_02 AC 120 ms
53,820 KB
testcase_03 AC 120 ms
54,164 KB
testcase_04 AC 124 ms
54,020 KB
testcase_05 AC 119 ms
53,892 KB
testcase_06 AC 122 ms
54,156 KB
testcase_07 AC 122 ms
53,908 KB
testcase_08 AC 121 ms
53,840 KB
testcase_09 AC 103 ms
52,680 KB
testcase_10 AC 121 ms
54,032 KB
testcase_11 AC 122 ms
53,792 KB
testcase_12 AC 122 ms
54,104 KB
testcase_13 AC 138 ms
53,892 KB
testcase_14 AC 143 ms
54,012 KB
testcase_15 AC 136 ms
54,044 KB
testcase_16 AC 137 ms
54,052 KB
testcase_17 AC 126 ms
53,944 KB
testcase_18 AC 110 ms
52,840 KB
testcase_19 AC 112 ms
52,912 KB
testcase_20 AC 123 ms
54,188 KB
testcase_21 AC 119 ms
53,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no063;

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();
		System.out.println((l-1)/(2*k)*k);
	}

}
0