結果
問題 | No.2684 折々の色 |
ユーザー | kakel-san |
提出日時 | 2024-03-20 23:09:25 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,669 bytes |
コンパイル時間 | 9,409 ms |
コンパイル使用メモリ | 165,412 KB |
実行使用メモリ | 193,128 KB |
最終ジャッジ日時 | 2024-09-30 09:18:31 |
合計ジャッジ時間 | 56,285 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
30,208 KB |
testcase_01 | AC | 49 ms
30,072 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | AC | 54 ms
30,080 KB |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | RE | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (101 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static long[] NList => ReadLine().Split().Select(long.Parse).ToArray(); static long[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m) = (c[0], c[1]); var x = NList; var map = NArr(n); var dic = new Dictionary<long, List<int>>(); for (var i = 0; i < n; ++i) { var nc = new long[m + 1]; var flg = true; for (var j = 0; j < m; ++j) { var ch = 10000L * x[j] - 100L * map[i][j] * map[i][m]; var pa = 100 - map[i][m]; if (ch < 0) flg = false; if (ch % pa != 0) flg = false; nc[j] = ch / pa; } nc[m] = 1; if (flg) { var k = Key1(nc) * 1_000_000_007 + Key2(nc); if (!dic.ContainsKey(k)) dic[k] = new List<int>(); dic[k].Add(i); } } for (var i = 0; i < n; ++i) { var sk = Key1(map[i]) * 1_000_000_007 + Key2(map[i]); if (dic.ContainsKey(sk)) { foreach (var btm in dic[sk]) { for (var j = 0; j < m; ++j) { var flg = true; if (10000L * x[j] != 100L * map[i][j] * map[i][m] + (100 - map[i][m]) * map[btm][j] * map[btm][m]) { flg = false; } if (flg) { WriteLine("Yes"); return; } } } } } WriteLine("No"); } static int mod1 = 998_244_397; static long Key1(long[] color) { var ans = 0L; for (var i = 0; i + 1 < color.Length; ++i) { ans = (ans * 13 % mod1 + color[i] * color[^1]) % mod1; } return ans; } static int mod2 = 998_244_391; static long Key2(long[] color) { var ans = 0L; for (var i = 0; i + 1 < color.Length; ++i) { ans = (ans * 17 % mod2 + (long)color[i] * color[^1]) % mod2; } return ans; } }