結果

問題 No.63 ポッキーゲーム
ユーザー aparachia14aparachia14
提出日時 2016-01-14 22:22:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 398 ms / 5,000 ms
コード長 799 bytes
コンパイル時間 3,080 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 50,924 KB
最終ジャッジ日時 2024-06-06 13:10:56
合計ジャッジ時間 6,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
49,940 KB
testcase_01 AC 52 ms
49,828 KB
testcase_02 AC 52 ms
49,964 KB
testcase_03 AC 54 ms
50,184 KB
testcase_04 AC 49 ms
50,228 KB
testcase_05 AC 47 ms
50,296 KB
testcase_06 AC 48 ms
50,212 KB
testcase_07 AC 50 ms
50,096 KB
testcase_08 AC 47 ms
49,760 KB
testcase_09 AC 57 ms
50,428 KB
testcase_10 AC 60 ms
50,812 KB
testcase_11 AC 391 ms
50,688 KB
testcase_12 AC 65 ms
50,808 KB
testcase_13 AC 398 ms
50,924 KB
testcase_14 AC 69 ms
50,484 KB
testcase_15 AC 70 ms
50,768 KB
testcase_16 AC 64 ms
50,724 KB
testcase_17 AC 379 ms
50,824 KB
testcase_18 AC 61 ms
49,932 KB
testcase_19 AC 106 ms
50,920 KB
testcase_20 AC 67 ms
50,744 KB
testcase_21 AC 72 ms
50,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class PockyGame {

	public static void main(String[] args) throws IOException {
		// TODO 自動生成されたメソッド・スタブ
		//長さ
		int length;
		//齧るスピード
		int speed;
		//入力値
		String[] input;
		
		//入力待ち
		BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		input = in.readLine().split(" ");
		length = Integer.parseInt(input[0]);
		speed = Integer.parseInt(input[1]);
		
		int counter = 0;
		while(true){
			//ハルカちゃん
			length = length - speed;
			//ユウちゃん
			if(length - speed > 0){
				length = length - speed;
				counter++;
			}else{
				break;
			}
		}
		
		System.out.println(speed * counter);

	}

}
0