結果

問題 No.842 初詣
ユーザー heyanxxheyanxx
提出日時 2019-07-04 09:11:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 3,520 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 37,452 KB
最終ジャッジ日時 2024-09-19 03:53:04
合計ジャッジ時間 4,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,804 KB
testcase_01 AC 45 ms
36,924 KB
testcase_02 AC 46 ms
36,700 KB
testcase_03 AC 47 ms
37,084 KB
testcase_04 AC 46 ms
37,072 KB
testcase_05 AC 50 ms
36,660 KB
testcase_06 AC 45 ms
36,916 KB
testcase_07 AC 46 ms
37,052 KB
testcase_08 AC 47 ms
37,052 KB
testcase_09 AC 49 ms
37,080 KB
testcase_10 AC 61 ms
37,452 KB
testcase_11 AC 46 ms
37,096 KB
testcase_12 AC 51 ms
37,108 KB
testcase_13 AC 52 ms
37,056 KB
testcase_14 AC 47 ms
37,112 KB
testcase_15 AC 46 ms
37,120 KB
testcase_16 AC 45 ms
36,952 KB
testcase_17 AC 43 ms
37,060 KB
testcase_18 AC 47 ms
37,036 KB
testcase_19 AC 45 ms
37,056 KB
testcase_20 AC 45 ms
36,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.LinkedHashMap;

public class Yukicoder842 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		BufferedReader bf=new BufferedReader(new InputStreamReader(System.in));
		try {
			String str =bf.readLine();
			String[]str2=str.split(" ");
			int a=Integer.parseInt(str2[0]);
			int b=Integer.parseInt(str2[1]);
			int c=Integer.parseInt(str2[2]);
			int d=Integer.parseInt(str2[3]);
			int e=Integer.parseInt(str2[4]);
			int f=Integer.parseInt(str2[5]);
			int g=Integer.parseInt(str2[6]);
			
			if(a*500+b*100+c*50+d*10+e*5+f==g) {
				System.out.println("YES");
			}else if(a*500+b*100+c*50+d*10+e*5+f>g){
				for(int i=0;i<=a;i++) {
					for(int j=0;j<=b;j++) {
						for(int k=0;k<=c;k++) {
							for(int m=0;m<=d;m++) {
								for(int n=0;n<=e;n++) {
									for(int p=0;p<=f;p++) {
										if(i*500+j*100+k*50+m*10+n*5+p==g) {
											System.out.println("YES");
											return;
										}
									}
								}
							}
						}
						
					}
				}
				System.out.println("NO");
				
			}else {
				System.out.println("NO");
			}
			
		} catch (IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}
		

	}

}
0