結果

問題 No.2684 折々の色
ユーザー ks2mks2m
提出日時 2024-03-20 22:27:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,621 ms / 2,000 ms
コード長 1,883 bytes
コンパイル時間 3,102 ms
コンパイル使用メモリ 78,852 KB
実行使用メモリ 132,516 KB
最終ジャッジ日時 2024-09-30 08:27:05
合計ジャッジ時間 48,598 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,652 KB
testcase_01 AC 52 ms
37,280 KB
testcase_02 AC 58 ms
37,044 KB
testcase_03 AC 53 ms
36,744 KB
testcase_04 AC 59 ms
37,460 KB
testcase_05 AC 52 ms
37,236 KB
testcase_06 AC 57 ms
37,352 KB
testcase_07 AC 54 ms
37,264 KB
testcase_08 AC 59 ms
36,988 KB
testcase_09 AC 54 ms
36,860 KB
testcase_10 AC 55 ms
37,056 KB
testcase_11 AC 997 ms
80,020 KB
testcase_12 AC 684 ms
67,852 KB
testcase_13 AC 927 ms
81,444 KB
testcase_14 AC 668 ms
63,192 KB
testcase_15 AC 751 ms
70,412 KB
testcase_16 AC 282 ms
50,528 KB
testcase_17 AC 643 ms
66,208 KB
testcase_18 AC 905 ms
80,812 KB
testcase_19 AC 1,072 ms
83,828 KB
testcase_20 AC 1,059 ms
79,740 KB
testcase_21 AC 358 ms
53,544 KB
testcase_22 AC 1,003 ms
86,972 KB
testcase_23 AC 996 ms
71,412 KB
testcase_24 AC 486 ms
56,828 KB
testcase_25 AC 696 ms
65,560 KB
testcase_26 AC 999 ms
83,080 KB
testcase_27 AC 809 ms
67,288 KB
testcase_28 AC 868 ms
71,856 KB
testcase_29 AC 1,338 ms
112,784 KB
testcase_30 AC 1,317 ms
104,912 KB
testcase_31 AC 1,264 ms
103,780 KB
testcase_32 AC 1,488 ms
119,548 KB
testcase_33 AC 1,463 ms
116,236 KB
testcase_34 AC 1,364 ms
116,828 KB
testcase_35 AC 1,341 ms
116,412 KB
testcase_36 AC 1,404 ms
102,988 KB
testcase_37 AC 1,280 ms
105,064 KB
testcase_38 AC 1,621 ms
122,164 KB
testcase_39 AC 1,601 ms
120,544 KB
testcase_40 AC 1,540 ms
122,836 KB
testcase_41 AC 1,369 ms
119,316 KB
testcase_42 AC 1,460 ms
118,628 KB
testcase_43 AC 1,607 ms
116,200 KB
testcase_44 AC 1,474 ms
116,116 KB
testcase_45 AC 1,611 ms
132,516 KB
testcase_46 AC 1,582 ms
120,804 KB
testcase_47 AC 50 ms
37,116 KB
testcase_48 AC 50 ms
37,168 KB
testcase_49 AC 50 ms
37,168 KB
testcase_50 AC 50 ms
36,652 KB
testcase_51 AC 51 ms
37,044 KB
testcase_52 AC 52 ms
37,068 KB
testcase_53 AC 55 ms
37,000 KB
testcase_54 AC 52 ms
37,004 KB
testcase_55 AC 50 ms
36,664 KB
testcase_56 AC 48 ms
36,940 KB
testcase_57 AC 48 ms
36,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;

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 m = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		int[] x = new int[m];
		for (int i = 0; i < m; i++) {
			x[i] = Integer.parseInt(sa[i]) * 10000;
		}
		int[][] c = new int[n][m];
		int[] t = new int[n];
		for (int i = 0; i < n; i++) {
			sa = br.readLine().split(" ");
			for (int j = 0; j < m; j++) {
				c[i][j] = Integer.parseInt(sa[j]);
			}
			t[i] = Integer.parseInt(sa[m]);
		}
		br.close();

		String[] keys = new String[n];
		Map<String, Integer> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
			StringBuilder sb = new StringBuilder();
			for (int j = 0; j < m; j++) {
				sb.append(t[i] * c[i][j]).append('-');
			}
			String s = sb.toString();
			keys[i] = s;
			map.put(s, map.getOrDefault(s, 0) + 1);
		}

		for (int i = 0; i < n; i++) {
			boolean flg = true;
			StringBuilder sb = new StringBuilder();
			for (int j = 0; j < m; j++) {
				int v1 = x[j] - 100 * t[i] * c[i][j];
				int v2 = 100 - t[i];
				if (v2 == 0) {
					if (v1 != 0) {
						flg = false;
						break;
					}
				} else {
					if (v1 % v2 != 0) {
						flg = false;
						break;
					}
					sb.append(v1 / v2).append('-');
				}
			}
			if (flg) {
				if (t[i] == 100) {
					System.out.println("Yes");
					return;
				}
				String s = sb.toString();
				if (s.equals(keys[i])) {
					if (map.getOrDefault(s, 0) >= 2) {
						System.out.println("Yes");
						return;
					}
				} else {
					if (map.containsKey(s)) {
						System.out.println("Yes");
						return;
					}
				}
			}
		}
		System.out.println("No");
	}
}
0