結果

問題 No.63 ポッキーゲーム
ユーザー r.suzukir.suzuki
提出日時 2016-01-25 01:17:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 926 ms / 5,000 ms
コード長 698 bytes
コンパイル時間 3,723 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 41,276 KB
最終ジャッジ日時 2024-06-06 13:13:21
合計ジャッジ時間 8,866 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,276 KB
testcase_01 AC 120 ms
41,256 KB
testcase_02 AC 106 ms
40,096 KB
testcase_03 AC 108 ms
40,840 KB
testcase_04 AC 106 ms
40,928 KB
testcase_05 AC 92 ms
39,428 KB
testcase_06 AC 108 ms
40,764 KB
testcase_07 AC 110 ms
41,104 KB
testcase_08 AC 111 ms
41,136 KB
testcase_09 AC 116 ms
41,132 KB
testcase_10 AC 130 ms
41,216 KB
testcase_11 AC 926 ms
41,192 KB
testcase_12 AC 123 ms
40,212 KB
testcase_13 AC 926 ms
41,160 KB
testcase_14 AC 128 ms
41,008 KB
testcase_15 AC 114 ms
40,168 KB
testcase_16 AC 101 ms
40,112 KB
testcase_17 AC 869 ms
40,356 KB
testcase_18 AC 112 ms
41,244 KB
testcase_19 AC 221 ms
40,996 KB
testcase_20 AC 116 ms
40,504 KB
testcase_21 AC 146 ms
41,132 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