結果

問題 No.63 ポッキーゲーム
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 20:13:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-12-24 05:01:10
合計ジャッジ時間 6,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,764 KB
testcase_01 AC 122 ms
40,800 KB
testcase_02 AC 117 ms
41,036 KB
testcase_03 AC 120 ms
41,032 KB
testcase_04 AC 122 ms
41,004 KB
testcase_05 AC 108 ms
40,088 KB
testcase_06 AC 117 ms
41,084 KB
testcase_07 AC 118 ms
41,004 KB
testcase_08 AC 119 ms
41,188 KB
testcase_09 AC 120 ms
40,772 KB
testcase_10 AC 115 ms
40,812 KB
testcase_11 AC 120 ms
40,736 KB
testcase_12 AC 118 ms
41,060 KB
testcase_13 AC 118 ms
41,220 KB
testcase_14 AC 118 ms
41,284 KB
testcase_15 AC 145 ms
41,120 KB
testcase_16 AC 153 ms
41,196 KB
testcase_17 AC 130 ms
41,256 KB
testcase_18 AC 121 ms
41,152 KB
testcase_19 AC 119 ms
40,876 KB
testcase_20 AC 117 ms
41,236 KB
testcase_21 AC 126 ms
40,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt(); 
		int K = sc.nextInt();
		System.out.println(((L / (2 * K) - (L % (2 * K) == 0?1:0)) * K));
	}
}
0