結果

問題 No.63 ポッキーゲーム
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 20:22:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 3,226 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-06-06 13:33:03
合計ジャッジ時間 5,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,808 KB
testcase_01 AC 99 ms
40,304 KB
testcase_02 AC 107 ms
40,936 KB
testcase_03 AC 109 ms
40,972 KB
testcase_04 AC 103 ms
39,832 KB
testcase_05 AC 104 ms
40,244 KB
testcase_06 AC 94 ms
39,888 KB
testcase_07 AC 106 ms
40,664 KB
testcase_08 AC 102 ms
39,920 KB
testcase_09 AC 99 ms
39,916 KB
testcase_10 AC 104 ms
39,836 KB
testcase_11 AC 104 ms
40,344 KB
testcase_12 AC 106 ms
41,288 KB
testcase_13 AC 105 ms
40,288 KB
testcase_14 AC 96 ms
39,996 KB
testcase_15 AC 94 ms
39,676 KB
testcase_16 AC 107 ms
40,044 KB
testcase_17 AC 106 ms
39,756 KB
testcase_18 AC 107 ms
40,956 KB
testcase_19 AC 107 ms
40,900 KB
testcase_20 AC 99 ms
39,852 KB
testcase_21 AC 107 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class PockyGame {

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

	}

}
0