結果

問題 No.63 ポッキーゲーム
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 11:00:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 2,830 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-07-06 15:22:14
合計ジャッジ時間 6,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,056 KB
testcase_01 AC 100 ms
40,976 KB
testcase_02 AC 100 ms
41,088 KB
testcase_03 AC 101 ms
41,200 KB
testcase_04 AC 102 ms
41,184 KB
testcase_05 AC 95 ms
40,208 KB
testcase_06 AC 100 ms
40,896 KB
testcase_07 AC 100 ms
41,284 KB
testcase_08 AC 99 ms
41,344 KB
testcase_09 AC 92 ms
40,376 KB
testcase_10 AC 101 ms
41,060 KB
testcase_11 AC 101 ms
41,004 KB
testcase_12 AC 103 ms
41,304 KB
testcase_13 AC 104 ms
40,816 KB
testcase_14 AC 102 ms
41,512 KB
testcase_15 AC 101 ms
41,128 KB
testcase_16 AC 102 ms
41,180 KB
testcase_17 AC 102 ms
41,048 KB
testcase_18 AC 101 ms
41,000 KB
testcase_19 AC 98 ms
40,920 KB
testcase_20 AC 94 ms
40,144 KB
testcase_21 AC 93 ms
40,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No63 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt(); // ポッキーの長さ
		int K = sc.nextInt(); // 一回で食べる長さ
		int Y; // ユウちゃんが食べる回数
		
		if(L % (2 * K) == 0) {
			Y = ((L / K) - 2) / 2;
		}else {
			Y = L / (2 * K);
		}
		
		System.out.println(Y * K);
	}
}
0