結果

問題 No.1015 おつりは要らないです
ユーザー ks2mks2m
提出日時 2020-04-03 22:48:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,428 bytes
コンパイル時間 7,457 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 65,052 KB
最終ジャッジ日時 2024-07-03 05:15:13
合計ジャッジ時間 11,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,988 KB
testcase_01 AC 48 ms
50,000 KB
testcase_02 AC 50 ms
49,884 KB
testcase_03 AC 50 ms
50,336 KB
testcase_04 AC 48 ms
49,888 KB
testcase_05 WA -
testcase_06 AC 50 ms
49,876 KB
testcase_07 AC 52 ms
50,268 KB
testcase_08 AC 51 ms
50,044 KB
testcase_09 AC 51 ms
50,148 KB
testcase_10 AC 312 ms
62,796 KB
testcase_11 AC 298 ms
63,080 KB
testcase_12 AC 280 ms
63,132 KB
testcase_13 AC 306 ms
63,028 KB
testcase_14 AC 298 ms
63,092 KB
testcase_15 AC 289 ms
62,692 KB
testcase_16 AC 302 ms
62,880 KB
testcase_17 AC 294 ms
63,068 KB
testcase_18 AC 296 ms
62,916 KB
testcase_19 AC 277 ms
62,704 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 50 ms
37,096 KB
testcase_31 AC 187 ms
48,608 KB
testcase_32 AC 177 ms
50,000 KB
testcase_33 AC 285 ms
54,476 KB
testcase_34 AC 53 ms
36,872 KB
testcase_35 WA -
testcase_36 AC 54 ms
36,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int x = Integer.parseInt(sa[1]);
		int y = Integer.parseInt(sa[2]);
		int z = Integer.parseInt(sa[3]);
		sa = br.readLine().split(" ");
		Obj[] arr = new Obj[n];
		for (int i = 0; i < n; i++) {
			Obj o = new Obj();
			o.a = Integer.parseInt(sa[i]);
			o.x = (o.a / 1000 + 1) % 5;
			o.y = ((o.a + 1000) / 5000) % 2;
			o.z = (o.a + 1000) / 10000;
			arr[i] = o;
		}
		br.close();

		Arrays.parallelSort(arr);

		for (int i = 0; i < n; i++) {
			int v = Math.min(arr[i].x, x);
			arr[i].x -= v;
			x -= v;
			if (arr[i].x > 0) {
				arr[i].y++;
			}
		}

		if (x != 0) {
			y += x / 5;
		}

		for (int i = 0; i < n; i++) {
			int v = Math.min(arr[i].y, y);
			arr[i].y -= v;
			y -= v;
			if (arr[i].y > 0) {
				arr[i].z++;
			}
		}

		if (y != 0) {
			z += y / 2;
		}

		for (int i = 0; i < n; i++) {
			z -= arr[i].z;
			if (z < 0) {
				System.out.println("No");
				return;
			}
		}
		System.out.println("Yes");
	}

	static class Obj implements Comparable<Obj> {
		int a, x, y, z;

		@Override
		public int compareTo(Obj o) {
			if (x != o.x) {
				return x - o.x;
			}
			return y - o.y;
		}
	}
}
0