結果
問題 | No.1015 おつりは要らないです |
ユーザー | kusagame12 |
提出日時 | 2023-11-25 17:32:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,876 bytes |
コンパイル時間 | 2,434 ms |
コンパイル使用メモリ | 77,468 KB |
実行使用メモリ | 68,548 KB |
最終ジャッジ日時 | 2024-09-26 11:01:33 |
合計ジャッジ時間 | 10,985 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
57,104 KB |
testcase_01 | AC | 52 ms
50,024 KB |
testcase_02 | AC | 52 ms
50,056 KB |
testcase_03 | AC | 54 ms
50,468 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 51 ms
50,412 KB |
testcase_07 | AC | 53 ms
50,348 KB |
testcase_08 | AC | 53 ms
50,064 KB |
testcase_09 | AC | 53 ms
50,100 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 264 ms
60,524 KB |
testcase_16 | AC | 260 ms
60,832 KB |
testcase_17 | AC | 248 ms
60,604 KB |
testcase_18 | AC | 241 ms
60,632 KB |
testcase_19 | AC | 242 ms
60,428 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] str = br.readLine().split(" "); int n = Integer.parseInt(str[0]); int x = Integer.parseInt(str[1]); int y = Integer.parseInt(str[2]); int z = Integer.parseInt(str[3]); String[] as = br.readLine().split(" "); int[] prices = new int[n]; for(int i = 0 ; i < n ; i++){ prices[i] = Integer.parseInt(as[i]); } Arrays.sort(prices); if(x + y + z < n){ System.out.print("No"); return; } int cnt = 0; for(int i = n - 1 ; i >= 0 ; i--){ int price = prices[i]; for(int j = 0 ; j <= z ; j++){ for(int k = 0 ; k <= y ; k++){ for(int l = 0 ; l <= x ; l++){ long sum = j * 10000 + k * 5000 + l * 1000; if(sum > price){ //System.out.println(sum+":"+price+" x:"+x+" j:"+j+" y:"+y+" k:"+k+" z:"+z+" l:"+l); cnt++; z = z-j; y = y-k; x = x-l; if(j != 0){ j--; } if(k != 0){ k--; } if(l != 0){ l--; } break; } } } } } System.out.print(cnt >= n ? "Yes" : "No"); } }