結果
問題 | No.842 初詣 |
ユーザー | Tomoya |
提出日時 | 2019-06-28 21:46:26 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 961 bytes |
コンパイル時間 | 3,663 ms |
コンパイル使用メモリ | 77,688 KB |
実行使用メモリ | 52,844 KB |
最終ジャッジ日時 | 2024-07-02 04:34:48 |
合計ジャッジ時間 | 12,759 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
import java.util.Scanner; public class B { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int[] Val = new int[7]; for(int i=0; i<7; i++) Val[i] = Integer.parseInt(scanner.next()); boolean f = false; for(int i=0; i<=Val[0]; i++) { for(int j=0; j<=Val[1]; j++) { for(int k=0; k<=Val[2]; k++) { for(int l=0; l<=Val[3]; l++) { for(int m=0; m<=Val[4]; m++) { for(int n=0; n<=Val[5]; n++) { if(500*i+100*j+50*k+10*l+5*m+n == Val[6]) f = true; System.out.println(i+j+k+l+m+n); } } } } } } if(f) System.out.println("YES"); else System.out.println("NO"); scanner.close(); } }