結果

問題 No.63 ポッキーゲーム
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 23:18:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 73,796 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-09-13 11:35:45
合計ジャッジ時間 6,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,168 KB
testcase_01 AC 134 ms
54,020 KB
testcase_02 AC 135 ms
54,012 KB
testcase_03 AC 136 ms
54,068 KB
testcase_04 AC 134 ms
54,148 KB
testcase_05 AC 134 ms
54,324 KB
testcase_06 AC 132 ms
53,920 KB
testcase_07 AC 136 ms
54,160 KB
testcase_08 AC 135 ms
54,116 KB
testcase_09 AC 133 ms
53,828 KB
testcase_10 AC 132 ms
53,892 KB
testcase_11 AC 134 ms
54,140 KB
testcase_12 AC 132 ms
54,152 KB
testcase_13 AC 131 ms
53,988 KB
testcase_14 AC 132 ms
53,968 KB
testcase_15 AC 131 ms
54,108 KB
testcase_16 AC 133 ms
53,960 KB
testcase_17 AC 133 ms
53,724 KB
testcase_18 AC 133 ms
53,824 KB
testcase_19 AC 134 ms
54,212 KB
testcase_20 AC 134 ms
41,484 KB
testcase_21 AC 133 ms
41,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int l = sc.nextInt(); int k = sc.nextInt();
		if (l%(2*k) == 0) {
			System.out.println((l/(2*k)-1)*k);
		}
		else {
			System.out.println(l/(2*k)*k);
		}
		
		
		
	}
}
0