結果

問題 No.63 ポッキーゲーム
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-26 22:59:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 3,635 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-06-06 13:04:34
合計ジャッジ時間 6,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,916 KB
testcase_01 AC 118 ms
41,016 KB
testcase_02 AC 118 ms
41,016 KB
testcase_03 AC 119 ms
41,316 KB
testcase_04 AC 115 ms
40,792 KB
testcase_05 AC 115 ms
40,296 KB
testcase_06 AC 113 ms
40,020 KB
testcase_07 AC 117 ms
40,272 KB
testcase_08 AC 114 ms
39,976 KB
testcase_09 AC 119 ms
40,972 KB
testcase_10 AC 120 ms
41,176 KB
testcase_11 AC 104 ms
39,912 KB
testcase_12 AC 103 ms
40,036 KB
testcase_13 AC 118 ms
40,828 KB
testcase_14 AC 124 ms
41,316 KB
testcase_15 AC 120 ms
41,108 KB
testcase_16 AC 113 ms
40,560 KB
testcase_17 AC 121 ms
41,040 KB
testcase_18 AC 101 ms
39,508 KB
testcase_19 AC 106 ms
40,032 KB
testcase_20 AC 119 ms
41,004 KB
testcase_21 AC 124 ms
40,812 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