結果

問題 No.2684 折々の色
ユーザー ks2mks2m
提出日時 2024-03-20 22:24:24
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,865 bytes
コンパイル時間 3,775 ms
コンパイル使用メモリ 77,940 KB
実行使用メモリ 122,996 KB
最終ジャッジ日時 2024-09-30 08:22:54
合計ジャッジ時間 45,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
36,632 KB
testcase_01 AC 52 ms
36,976 KB
testcase_02 AC 58 ms
36,648 KB
testcase_03 AC 56 ms
36,720 KB
testcase_04 AC 59 ms
37,120 KB
testcase_05 AC 53 ms
36,740 KB
testcase_06 AC 57 ms
36,648 KB
testcase_07 AC 54 ms
36,648 KB
testcase_08 AC 57 ms
37,204 KB
testcase_09 AC 55 ms
37,184 KB
testcase_10 AC 59 ms
37,232 KB
testcase_11 AC 875 ms
84,176 KB
testcase_12 AC 601 ms
67,856 KB
testcase_13 AC 834 ms
82,316 KB
testcase_14 AC 672 ms
66,224 KB
testcase_15 AC 701 ms
71,092 KB
testcase_16 AC 265 ms
50,384 KB
testcase_17 AC 584 ms
66,272 KB
testcase_18 AC 816 ms
85,948 KB
testcase_19 AC 981 ms
89,240 KB
testcase_20 AC 768 ms
74,748 KB
testcase_21 AC 323 ms
53,140 KB
testcase_22 AC 930 ms
85,944 KB
testcase_23 AC 874 ms
71,844 KB
testcase_24 AC 446 ms
56,796 KB
testcase_25 AC 590 ms
65,612 KB
testcase_26 AC 890 ms
87,980 KB
testcase_27 AC 608 ms
66,584 KB
testcase_28 AC 777 ms
70,036 KB
testcase_29 AC 1,365 ms
111,836 KB
testcase_30 AC 1,173 ms
116,632 KB
testcase_31 AC 1,135 ms
102,468 KB
testcase_32 AC 1,336 ms
119,168 KB
testcase_33 AC 1,262 ms
109,868 KB
testcase_34 AC 1,277 ms
107,172 KB
testcase_35 AC 1,371 ms
117,548 KB
testcase_36 AC 1,295 ms
104,744 KB
testcase_37 AC 1,203 ms
102,612 KB
testcase_38 AC 1,615 ms
121,212 KB
testcase_39 AC 1,562 ms
122,160 KB
testcase_40 AC 1,534 ms
122,996 KB
testcase_41 AC 1,454 ms
118,400 KB
testcase_42 AC 1,557 ms
122,432 KB
testcase_43 AC 1,525 ms
122,484 KB
testcase_44 AC 1,427 ms
120,236 KB
testcase_45 AC 1,629 ms
122,216 KB
testcase_46 AC 1,503 ms
122,280 KB
testcase_47 AC 52 ms
36,908 KB
testcase_48 AC 53 ms
37,212 KB
testcase_49 AC 54 ms
36,960 KB
testcase_50 AC 53 ms
37,092 KB
testcase_51 AC 52 ms
36,812 KB
testcase_52 AC 58 ms
36,992 KB
testcase_53 AC 52 ms
36,624 KB
testcase_54 AC 53 ms
37,260 KB
testcase_55 AC 54 ms
37,080 KB
testcase_56 AC 52 ms
37,052 KB
testcase_57 RE -
権限があれば一括ダウンロードができます

ソースコード

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;
					}
				}
				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