結果

問題 No.842 初詣
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 14:44:48
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 3,434 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-11-21 08:25:28
合計ジャッジ時間 7,273 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,364 KB
testcase_01 AC 136 ms
53,728 KB
testcase_02 AC 136 ms
54,060 KB
testcase_03 AC 133 ms
54,052 KB
testcase_04 AC 133 ms
54,188 KB
testcase_05 AC 132 ms
54,136 KB
testcase_06 AC 133 ms
54,168 KB
testcase_07 WA -
testcase_08 AC 137 ms
54,192 KB
testcase_09 AC 134 ms
54,068 KB
testcase_10 AC 134 ms
54,256 KB
testcase_11 AC 133 ms
54,172 KB
testcase_12 AC 133 ms
54,344 KB
testcase_13 AC 133 ms
54,284 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
54,180 KB
testcase_17 AC 134 ms
53,840 KB
testcase_18 AC 135 ms
54,132 KB
testcase_19 AC 135 ms
54,332 KB
testcase_20 AC 133 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package con_level_1half;
import java.util.Scanner;
public class Con842 {
	static int[] num = new int[6];
	static int[] gold = {500,100,50,10,5,1};

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		for(int i = 0;i < 6;i++){
			num[i] = s.nextInt();
		}
		int g = s.nextInt();
		s.close();
		int t = rec(0,g);
		if(t == 1){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

		}

	static int rec(int k, int tot){    //k:goldとnumの番号、tot:残りの合計
		int tf = 0;

		if(tot % gold[k] == 0){
			if(tot / gold[k] <= num[k]){
				tf = 1;
			}else{
				if(k == 5){
					tf = 0;
				}else{
					tf = rec(k + 1 ,tot - gold[k] + num[k]);
				}
			}
		}else{
			tf = rec(k + 1 , tot - gold[k] * num[k]);
		}
		return tf;
	}
}
0