結果
問題 | No.1015 おつりは要らないです |
ユーザー | ntk3264 |
提出日時 | 2020-04-04 14:59:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,383 bytes |
コンパイル時間 | 2,415 ms |
コンパイル使用メモリ | 77,620 KB |
実行使用メモリ | 50,468 KB |
最終ジャッジ日時 | 2024-07-03 07:20:18 |
合計ジャッジ時間 | 19,315 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
41,068 KB |
testcase_01 | AC | 122 ms
41,288 KB |
testcase_02 | AC | 119 ms
40,964 KB |
testcase_03 | AC | 118 ms
41,184 KB |
testcase_04 | WA | - |
testcase_05 | AC | 116 ms
41,360 KB |
testcase_06 | AC | 118 ms
41,312 KB |
testcase_07 | AC | 115 ms
41,380 KB |
testcase_08 | AC | 117 ms
41,100 KB |
testcase_09 | AC | 116 ms
41,272 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 630 ms
48,740 KB |
testcase_16 | AC | 652 ms
49,032 KB |
testcase_17 | AC | 586 ms
48,476 KB |
testcase_18 | AC | 612 ms
48,652 KB |
testcase_19 | AC | 630 ms
48,696 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 101 ms
40,148 KB |
testcase_31 | AC | 530 ms
48,452 KB |
testcase_32 | AC | 536 ms
48,580 KB |
testcase_33 | AC | 582 ms
49,476 KB |
testcase_34 | AC | 130 ms
41,416 KB |
testcase_35 | AC | 110 ms
40,388 KB |
testcase_36 | AC | 124 ms
41,392 KB |
ソースコード
import java.io.PrintWriter; import java.util.*; public class Main { Scanner sc = new Scanner(System.in); public static void main(String[] args) { new Main().run(); } void run() { int n = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int z = sc.nextInt(); int[] arr = new int[n]; for (int i=0; i<n; i++) arr[i] = sc.nextInt(); Arrays.sort(arr); label: for (int i=0; i<n; i++) { int price = arr[i]; int div = price / 1000; if (div==0) { if (x>0) { x--; continue label; } else if (y>0) { y--; continue label; } else if (z>0) { z--; continue label; } else if (z<=0) { System.out.print("No"); return; } } else if (1<=div) { if (0<price && price<5000) { y--; continue label; } else if (5000<=price) { int tmp = price / 5000; if (x>=div+1) { x -= (div+1); } else { price -= x*1000; x = 0; } if (y>=tmp+1) { y -= (tmp+1); continue label; } else { price -= y*5000; y = 0; if (price<=0) continue label; } } if (5000<=price) { if (price<10000) { z--; continue label; } else { int tmp = price / 10000; if (z>=tmp+1) { z -= (tmp+1); continue label; } else { System.out.print("No"); // System.out.print("here"); return; } } } } } System.out.print("Yes"); } }