結果

問題 No.842 初詣
ユーザー GrenacheGrenache
提出日時 2019-06-28 22:12:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 3,756 ms
コンパイル使用メモリ 79,940 KB
実行使用メモリ 46,748 KB
最終ジャッジ日時 2024-07-02 04:50:12
合計ジャッジ時間 8,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder842 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int[] abcdef = new int[6];
		for (int i = 0; i < 6; i++) {
			abcdef[i] = sc.nextInt();
		}
		
		int g = sc.nextInt();

		Deque<List<Integer>> st = new ArrayDeque<>();
		st.push(new ArrayList<>());
		while (!st.isEmpty()) {
			List<Integer> e = st.pop();
			
			int j = e.size();
			
			if (j == 6) {
				int sum = 500 * e.get(0) + 100 * e.get(1) + 50 * e.get(2) + 10 * e.get(3) + 5 * e.get(4) + e.get(5);
				
				if (sum == g) {
					pr.println("YES");
					return;
				}
			} else {
				for (int i = 0; i <= abcdef[j]; i++) {
					List<Integer> tmp = new ArrayList<>(e);
					tmp.add(i);
					st.push(tmp);
				}
			}
		}
		
		pr.println("NO");
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0