結果

問題 No.63 ポッキーゲーム
ユーザー yun_appyun_app
提出日時 2017-04-11 00:14:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 720 bytes
コンパイル時間 1,653 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 36,968 KB
最終ジャッジ日時 2024-06-06 13:34:16
合計ジャッジ時間 3,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
36,520 KB
testcase_01 AC 43 ms
36,928 KB
testcase_02 AC 43 ms
36,480 KB
testcase_03 AC 44 ms
36,844 KB
testcase_04 AC 45 ms
36,524 KB
testcase_05 AC 43 ms
36,448 KB
testcase_06 AC 44 ms
36,968 KB
testcase_07 AC 43 ms
36,716 KB
testcase_08 AC 47 ms
36,692 KB
testcase_09 AC 45 ms
36,888 KB
testcase_10 AC 46 ms
36,732 KB
testcase_11 AC 44 ms
36,500 KB
testcase_12 AC 42 ms
36,876 KB
testcase_13 AC 43 ms
36,628 KB
testcase_14 AC 43 ms
36,452 KB
testcase_15 AC 43 ms
36,728 KB
testcase_16 AC 44 ms
36,684 KB
testcase_17 AC 44 ms
36,960 KB
testcase_18 AC 43 ms
36,868 KB
testcase_19 AC 44 ms
36,928 KB
testcase_20 AC 45 ms
36,904 KB
testcase_21 AC 45 ms
36,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Main
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ");
        int L = Integer.parseInt(line[0]);
        int K = Integer.parseInt(line[1]);
        
        int ans = 0;
        if(L%(2*K) == 0){
            ans = K*((L-1)/(2*K));
        }else{
            ans = K*((L)/(2*K));
        }
        
        System.out.println(ans);
    }
}
0