結果

問題 No.63 ポッキーゲーム
ユーザー scachescache
提出日時 2014-11-12 03:24:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 287 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-06-06 12:53:57
合計ジャッジ時間 5,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
53,824 KB
testcase_01 AC 115 ms
53,772 KB
testcase_02 AC 95 ms
52,552 KB
testcase_03 AC 102 ms
52,948 KB
testcase_04 AC 113 ms
53,728 KB
testcase_05 AC 95 ms
52,548 KB
testcase_06 AC 108 ms
53,928 KB
testcase_07 AC 107 ms
53,736 KB
testcase_08 AC 108 ms
53,728 KB
testcase_09 AC 119 ms
53,660 KB
testcase_10 AC 117 ms
53,836 KB
testcase_11 AC 103 ms
52,828 KB
testcase_12 AC 102 ms
52,808 KB
testcase_13 AC 114 ms
53,788 KB
testcase_14 AC 100 ms
52,804 KB
testcase_15 AC 111 ms
53,780 KB
testcase_16 AC 109 ms
53,956 KB
testcase_17 AC 99 ms
52,832 KB
testcase_18 AC 112 ms
54,132 KB
testcase_19 AC 109 ms
54,048 KB
testcase_20 AC 108 ms
53,776 KB
testcase_21 AC 110 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main63 {
	public static void main(String[] args) {
		Main63 p = new Main63();
	}

	public Main63(){
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int k = sc.nextInt();
		System.out.println((l-1)/(2*k)*k);
	}

}
0