結果
問題 | No.842 初詣 |
ユーザー | shinwisteria |
提出日時 | 2019-08-30 14:49:17 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 136 ms / 2,000 ms |
コード長 | 867 bytes |
コンパイル時間 | 4,942 ms |
コンパイル使用メモリ | 77,700 KB |
実行使用メモリ | 54,420 KB |
最終ジャッジ日時 | 2024-11-21 10:24:02 |
合計ジャッジ時間 | 8,371 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
54,064 KB |
testcase_01 | AC | 130 ms
54,116 KB |
testcase_02 | AC | 131 ms
54,056 KB |
testcase_03 | AC | 133 ms
53,960 KB |
testcase_04 | AC | 131 ms
53,972 KB |
testcase_05 | AC | 136 ms
54,088 KB |
testcase_06 | AC | 131 ms
54,068 KB |
testcase_07 | AC | 128 ms
54,040 KB |
testcase_08 | AC | 132 ms
54,420 KB |
testcase_09 | AC | 134 ms
54,016 KB |
testcase_10 | AC | 134 ms
54,216 KB |
testcase_11 | AC | 133 ms
54,180 KB |
testcase_12 | AC | 135 ms
53,716 KB |
testcase_13 | AC | 133 ms
54,012 KB |
testcase_14 | AC | 131 ms
53,992 KB |
testcase_15 | AC | 130 ms
53,988 KB |
testcase_16 | AC | 119 ms
52,900 KB |
testcase_17 | AC | 132 ms
54,100 KB |
testcase_18 | AC | 129 ms
53,960 KB |
testcase_19 | AC | 132 ms
54,032 KB |
testcase_20 | AC | 133 ms
54,072 KB |
ソースコード
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{ if(tot / gold[k] <= num[k]){ tf = rec(k + 1 , tot % gold[k]); }else{ tf = rec(k + 1 , tot - gold[k] * num[k]); } } return tf; } }