結果

問題 No.63 ポッキーゲーム
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-26 22:59:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 3,621 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-12-24 04:52:50
合計ジャッジ時間 7,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,108 KB
testcase_01 AC 138 ms
41,240 KB
testcase_02 AC 136 ms
41,024 KB
testcase_03 AC 140 ms
41,212 KB
testcase_04 AC 140 ms
41,452 KB
testcase_05 AC 140 ms
40,908 KB
testcase_06 AC 128 ms
40,036 KB
testcase_07 AC 137 ms
41,120 KB
testcase_08 AC 141 ms
41,116 KB
testcase_09 AC 144 ms
41,216 KB
testcase_10 AC 140 ms
41,416 KB
testcase_11 AC 141 ms
41,100 KB
testcase_12 AC 138 ms
41,088 KB
testcase_13 AC 137 ms
41,208 KB
testcase_14 AC 135 ms
41,248 KB
testcase_15 AC 139 ms
41,344 KB
testcase_16 AC 135 ms
41,156 KB
testcase_17 AC 124 ms
39,968 KB
testcase_18 AC 144 ms
41,092 KB
testcase_19 AC 137 ms
41,092 KB
testcase_20 AC 137 ms
41,096 KB
testcase_21 AC 138 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No63 {

	public void run(){
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int K = sc.nextInt();

		System.out.println((L-1)/(2*K)*K);
		
	}
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		new No63().run();
	}

}
0