結果

問題 No.63 ポッキーゲーム
ユーザー soujikisoujiki
提出日時 2015-04-29 18:04:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 319 bytes
コンパイル時間 2,987 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-06-06 13:00:00
合計ジャッジ時間 6,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,160 KB
testcase_01 AC 120 ms
41,148 KB
testcase_02 AC 120 ms
41,260 KB
testcase_03 AC 118 ms
41,128 KB
testcase_04 AC 122 ms
41,244 KB
testcase_05 AC 122 ms
41,112 KB
testcase_06 AC 109 ms
41,704 KB
testcase_07 AC 121 ms
41,252 KB
testcase_08 AC 119 ms
40,992 KB
testcase_09 AC 121 ms
41,216 KB
testcase_10 AC 120 ms
41,208 KB
testcase_11 AC 109 ms
41,400 KB
testcase_12 AC 125 ms
41,120 KB
testcase_13 AC 123 ms
41,200 KB
testcase_14 AC 122 ms
40,900 KB
testcase_15 AC 120 ms
40,980 KB
testcase_16 AC 121 ms
41,036 KB
testcase_17 AC 125 ms
41,204 KB
testcase_18 AC 122 ms
41,560 KB
testcase_19 AC 126 ms
41,384 KB
testcase_20 AC 125 ms
41,064 KB
testcase_21 AC 119 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_63{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int L = stdIn.nextInt();
		int K = stdIn.nextInt();
		int count = L/(2*K);
		if(L == K*count*2){
			System.out.println(K*(count-1));
		}
		else{
			System.out.println(K*count);
		}
	}
}
0