結果

問題 No.63 ポッキーゲーム
ユーザー r.suzukir.suzuki
提出日時 2016-01-25 01:17:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,013 ms / 5,000 ms
コード長 698 bytes
コンパイル時間 3,798 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 41,264 KB
最終ジャッジ日時 2024-12-24 05:01:03
合計ジャッジ時間 10,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,164 KB
testcase_01 AC 116 ms
41,024 KB
testcase_02 AC 116 ms
41,020 KB
testcase_03 AC 104 ms
39,632 KB
testcase_04 AC 116 ms
41,048 KB
testcase_05 AC 116 ms
40,920 KB
testcase_06 AC 119 ms
41,236 KB
testcase_07 AC 124 ms
40,792 KB
testcase_08 AC 115 ms
40,880 KB
testcase_09 AC 125 ms
41,024 KB
testcase_10 AC 131 ms
41,212 KB
testcase_11 AC 1,013 ms
41,132 KB
testcase_12 AC 138 ms
41,012 KB
testcase_13 AC 986 ms
40,960 KB
testcase_14 AC 145 ms
40,788 KB
testcase_15 AC 131 ms
39,784 KB
testcase_16 AC 129 ms
41,264 KB
testcase_17 AC 958 ms
41,080 KB
testcase_18 AC 125 ms
41,032 KB
testcase_19 AC 286 ms
41,152 KB
testcase_20 AC 166 ms
41,004 KB
testcase_21 AC 190 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Human{
	int eatLength;
	int eatedPokkey;
	
	public Human(int i){
		this.eatLength = i;
		this.eatedPokkey = 0;
	}
}

public class No_63{
	public static void main(String[] args){
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int pokkey = sc.nextInt();
		int k = sc.nextInt();
		
		Human haruka = new Human(k);
		Human yuu = new Human(k);
		
		while(pokkey > 0){
			if(pokkey - (haruka.eatLength + yuu.eatLength) > 0){
				haruka.eatedPokkey += haruka.eatLength;
				yuu.eatedPokkey += yuu.eatLength;
				pokkey -= haruka.eatLength + yuu.eatLength;
			}
			else{
				haruka.eatedPokkey += pokkey;
				pokkey = 0;
			}
		}
		System.out.println(yuu.eatedPokkey);
		sc.close();
	}
}
0