結果

問題 No.63 ポッキーゲーム
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 20:19:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 3,528 ms
コンパイル使用メモリ 75,432 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-07-04 19:21:13
合計ジャッジ時間 6,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,856 KB
testcase_01 AC 102 ms
40,288 KB
testcase_02 AC 121 ms
41,048 KB
testcase_03 AC 116 ms
41,056 KB
testcase_04 AC 114 ms
41,296 KB
testcase_05 AC 110 ms
41,048 KB
testcase_06 AC 102 ms
40,028 KB
testcase_07 AC 118 ms
41,296 KB
testcase_08 AC 122 ms
41,124 KB
testcase_09 AC 108 ms
40,068 KB
testcase_10 AC 111 ms
41,332 KB
testcase_11 AC 111 ms
41,020 KB
testcase_12 AC 115 ms
41,324 KB
testcase_13 AC 118 ms
40,944 KB
testcase_14 AC 124 ms
41,168 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 122 ms
41,056 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 111 ms
41,044 KB
testcase_21 AC 115 ms
40,892 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);
		}else{
			System.out.println((L/(2*K)) * K);
		}

	}

}
0