結果

問題 No.63 ポッキーゲーム
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-16 01:04:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 1,046 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 37,156 KB
最終ジャッジ日時 2024-06-06 13:46:13
合計ジャッジ時間 3,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,960 KB
testcase_01 AC 52 ms
36,636 KB
testcase_02 AC 53 ms
36,760 KB
testcase_03 AC 51 ms
37,012 KB
testcase_04 AC 52 ms
36,768 KB
testcase_05 AC 52 ms
37,008 KB
testcase_06 AC 51 ms
36,788 KB
testcase_07 AC 52 ms
36,628 KB
testcase_08 AC 52 ms
36,944 KB
testcase_09 AC 52 ms
36,748 KB
testcase_10 AC 52 ms
37,156 KB
testcase_11 AC 52 ms
36,888 KB
testcase_12 AC 52 ms
36,816 KB
testcase_13 AC 52 ms
37,072 KB
testcase_14 AC 53 ms
36,860 KB
testcase_15 AC 52 ms
36,784 KB
testcase_16 AC 52 ms
36,872 KB
testcase_17 AC 51 ms
36,884 KB
testcase_18 AC 52 ms
36,860 KB
testcase_19 AC 51 ms
36,480 KB
testcase_20 AC 52 ms
36,632 KB
testcase_21 AC 52 ms
36,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class No63 {

	public static void main(String[] args) throws IOException, NumberFormatException{
		BufferedReader br = new BufferedReader ( new InputStreamReader(System.in) );
		String [] str = br.readLine().split(" ");
		
		long L = Long.parseLong(str[0]);  //読み込んだ1つ目の数字(文字列)を変数Lに入れる
		long K = Long.parseLong(str[1]);  //同様に2つ目を変数Kに入れる
		long M = 2*K;  //二人が一度に食べる長さ
		
		if( 1 <= L/M && L%M != 0){  //一度以上二人で食べて、あまりがある時
			System.out.println( (L/M) * K );  //二人で食べた回数*ユウちゃんが食べる長さ
		}
		if( 1 <= L/M && L%M == 0 ){  //二人でちょうど食べきる時
		    System.out.println( ((L/M)-1) * K );  //(二人で食べた回数-1)*ユウちゃんが食べる長さ
	    } 
	    if( L/M == 0 ){  //一度も二人同時に食べられない時
	    	System.out.println(0);
	    }
    }
}
0