結果

問題 No.63 ポッキーゲーム
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 20:22:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 3,600 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-12-24 05:25:11
合計ジャッジ時間 7,233 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,008 KB
testcase_01 AC 106 ms
40,020 KB
testcase_02 AC 104 ms
39,828 KB
testcase_03 AC 126 ms
41,384 KB
testcase_04 AC 106 ms
40,192 KB
testcase_05 AC 116 ms
41,272 KB
testcase_06 AC 119 ms
41,308 KB
testcase_07 AC 120 ms
41,104 KB
testcase_08 AC 121 ms
41,352 KB
testcase_09 AC 105 ms
39,880 KB
testcase_10 AC 118 ms
41,020 KB
testcase_11 AC 116 ms
41,184 KB
testcase_12 AC 118 ms
41,352 KB
testcase_13 AC 118 ms
41,116 KB
testcase_14 AC 126 ms
41,144 KB
testcase_15 AC 129 ms
41,248 KB
testcase_16 AC 122 ms
41,200 KB
testcase_17 AC 112 ms
40,100 KB
testcase_18 AC 122 ms
41,212 KB
testcase_19 AC 118 ms
41,212 KB
testcase_20 AC 123 ms
41,312 KB
testcase_21 AC 122 ms
41,248 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