diff --git a/S2OJ/1548/1548.cpp b/S2OJ/1548/1548.cpp new file mode 100644 index 00000000..58ab324e --- /dev/null +++ b/S2OJ/1548/1548.cpp @@ -0,0 +1,67 @@ +#include +#include +#include +#include +#include +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +const int N = 1e5 + 5; + +int n; +long long w[N], ans; +std::mt19937 rng(std::random_device{}()); + +int random(int l, int r) { + return std::uniform_int_distribution(l, r)(rng); +} + +int main() { + std::ios::sync_with_stdio(false); + cin.tie(nullptr); + + cin >> n; + + for (int i = 1; i <= n; i++) { + cin >> w[i]; + } + + while (clock() <= 0.6 * CLOCKS_PER_SEC) { + int p = random(1, n); + + std::unordered_map cnt; + std::vector v; + + for (int i = 1; i <= n; i++) { + cnt[std::__gcd(w[i], w[p])]++; + } + + for (int i = 1; i <= w[p] / i; i++) { + if (w[p] % i == 0) { + v.push_back(i); + if ((w[p] / i) != i) v.push_back(w[p] / i); + } + } + + for (long long x : v) { + int sum = 0; + + for (long long y : v) { + if (y % x == 0) { + sum += cnt[y]; + } + } + + if (sum >= (n + 1) / 2) { + ans = std::max(ans, x); + } + } + } + + cout << ans << endl; + + return 0; +} diff --git a/S2OJ/1548/data/data1.in b/S2OJ/1548/data/data1.in new file mode 100644 index 00000000..6b443535 --- /dev/null +++ b/S2OJ/1548/data/data1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7e0d7e6f20c392e30b31125af773fe5b966d8baa569cc5f06cabb9aad78a96 +size 115 diff --git a/S2OJ/1548/data/data1.out b/S2OJ/1548/data/data1.out new file mode 100644 index 00000000..ca267b30 --- /dev/null +++ b/S2OJ/1548/data/data1.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1121cfccd5913f0a63fec40a6ffd44ea64f9dc135c66634ba001d10bcf4302a2 +size 2 diff --git a/S2OJ/1548/data/data10.in b/S2OJ/1548/data/data10.in new file mode 100644 index 00000000..cb52d610 --- /dev/null +++ b/S2OJ/1548/data/data10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d787f83de03afcd43e4de0a869586920bf881054817cf3489189615e3faeaa7a +size 19904 diff --git a/S2OJ/1548/data/data10.out b/S2OJ/1548/data/data10.out new file mode 100644 index 00000000..f0e0b309 --- /dev/null +++ b/S2OJ/1548/data/data10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38c3bd5ec97d47f7a17d787040c7b467910ba48ca7ff46ea09620e6ef330ad7 +size 10 diff --git a/S2OJ/1548/data/data11.in b/S2OJ/1548/data/data11.in new file mode 100644 index 00000000..79313a5d --- /dev/null +++ b/S2OJ/1548/data/data11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa869f0e9825800d75e585f6dbfc283b6d70bd5b552a47b2032e87abaa0f8b43 +size 993059 diff --git a/S2OJ/1548/data/data11.out b/S2OJ/1548/data/data11.out new file mode 100644 index 00000000..c7967cd5 --- /dev/null +++ b/S2OJ/1548/data/data11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d4f2a86deb5e2574bb3210b67bb24fcc4afb19f93a7b65a057daa874a9d18e +size 3 diff --git a/S2OJ/1548/data/data12.in b/S2OJ/1548/data/data12.in new file mode 100644 index 00000000..bd164496 --- /dev/null +++ b/S2OJ/1548/data/data12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d922792eec8efa7059f1fa35490d18c1dda2f5ef96fb4f3cada087346b438599 +size 1000007 diff --git a/S2OJ/1548/data/data12.out b/S2OJ/1548/data/data12.out new file mode 100644 index 00000000..f0e0b309 --- /dev/null +++ b/S2OJ/1548/data/data12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38c3bd5ec97d47f7a17d787040c7b467910ba48ca7ff46ea09620e6ef330ad7 +size 10 diff --git a/S2OJ/1548/data/data13.in b/S2OJ/1548/data/data13.in new file mode 100644 index 00000000..79313a5d --- /dev/null +++ b/S2OJ/1548/data/data13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa869f0e9825800d75e585f6dbfc283b6d70bd5b552a47b2032e87abaa0f8b43 +size 993059 diff --git a/S2OJ/1548/data/data13.out b/S2OJ/1548/data/data13.out new file mode 100644 index 00000000..c7967cd5 --- /dev/null +++ b/S2OJ/1548/data/data13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d4f2a86deb5e2574bb3210b67bb24fcc4afb19f93a7b65a057daa874a9d18e +size 3 diff --git a/S2OJ/1548/data/data14.in b/S2OJ/1548/data/data14.in new file mode 100644 index 00000000..bd164496 --- /dev/null +++ b/S2OJ/1548/data/data14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d922792eec8efa7059f1fa35490d18c1dda2f5ef96fb4f3cada087346b438599 +size 1000007 diff --git a/S2OJ/1548/data/data14.out b/S2OJ/1548/data/data14.out new file mode 100644 index 00000000..f0e0b309 --- /dev/null +++ b/S2OJ/1548/data/data14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38c3bd5ec97d47f7a17d787040c7b467910ba48ca7ff46ea09620e6ef330ad7 +size 10 diff --git a/S2OJ/1548/data/data15.in b/S2OJ/1548/data/data15.in new file mode 100644 index 00000000..79313a5d --- /dev/null +++ b/S2OJ/1548/data/data15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa869f0e9825800d75e585f6dbfc283b6d70bd5b552a47b2032e87abaa0f8b43 +size 993059 diff --git a/S2OJ/1548/data/data15.out b/S2OJ/1548/data/data15.out new file mode 100644 index 00000000..c7967cd5 --- /dev/null +++ b/S2OJ/1548/data/data15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d4f2a86deb5e2574bb3210b67bb24fcc4afb19f93a7b65a057daa874a9d18e +size 3 diff --git a/S2OJ/1548/data/data16.in b/S2OJ/1548/data/data16.in new file mode 100644 index 00000000..3f5bef32 --- /dev/null +++ b/S2OJ/1548/data/data16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03be3dfa983ffa5cb2db4e696522625c98da04789240841c0813af34653b84c +size 1289325 diff --git a/S2OJ/1548/data/data16.out b/S2OJ/1548/data/data16.out new file mode 100644 index 00000000..018e5442 --- /dev/null +++ b/S2OJ/1548/data/data16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa85d4a34da4634a9c23451e25cbd173cb48f5bb6cb2c8eea1d18aaa60ccc34 +size 11 diff --git a/S2OJ/1548/data/data17.in b/S2OJ/1548/data/data17.in new file mode 100644 index 00000000..b26f8d9e --- /dev/null +++ b/S2OJ/1548/data/data17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00517cc9fcbb082006ca05797512feb42edf3912b84de536b1532491783b1827 +size 1179812 diff --git a/S2OJ/1548/data/data17.out b/S2OJ/1548/data/data17.out new file mode 100644 index 00000000..d790bd49 --- /dev/null +++ b/S2OJ/1548/data/data17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6d31a5983a91251bfae5aefa1c0a19d8ba3cf601d0e8a706b4cfa9661a6b8a +size 2 diff --git a/S2OJ/1548/data/data18.in b/S2OJ/1548/data/data18.in new file mode 100644 index 00000000..3f5bef32 --- /dev/null +++ b/S2OJ/1548/data/data18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03be3dfa983ffa5cb2db4e696522625c98da04789240841c0813af34653b84c +size 1289325 diff --git a/S2OJ/1548/data/data18.out b/S2OJ/1548/data/data18.out new file mode 100644 index 00000000..018e5442 --- /dev/null +++ b/S2OJ/1548/data/data18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa85d4a34da4634a9c23451e25cbd173cb48f5bb6cb2c8eea1d18aaa60ccc34 +size 11 diff --git a/S2OJ/1548/data/data19.in b/S2OJ/1548/data/data19.in new file mode 100644 index 00000000..b26f8d9e --- /dev/null +++ b/S2OJ/1548/data/data19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00517cc9fcbb082006ca05797512feb42edf3912b84de536b1532491783b1827 +size 1179812 diff --git a/S2OJ/1548/data/data19.out b/S2OJ/1548/data/data19.out new file mode 100644 index 00000000..d790bd49 --- /dev/null +++ b/S2OJ/1548/data/data19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6d31a5983a91251bfae5aefa1c0a19d8ba3cf601d0e8a706b4cfa9661a6b8a +size 2 diff --git a/S2OJ/1548/data/data2.in b/S2OJ/1548/data/data2.in new file mode 100644 index 00000000..48ff6aec --- /dev/null +++ b/S2OJ/1548/data/data2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864ca66365f6dacab136fe55c9ac42e8988594c81375b11624d4a9d75e5131ad +size 133 diff --git a/S2OJ/1548/data/data2.out b/S2OJ/1548/data/data2.out new file mode 100644 index 00000000..018e5442 --- /dev/null +++ b/S2OJ/1548/data/data2.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa85d4a34da4634a9c23451e25cbd173cb48f5bb6cb2c8eea1d18aaa60ccc34 +size 11 diff --git a/S2OJ/1548/data/data20.in b/S2OJ/1548/data/data20.in new file mode 100644 index 00000000..3f5bef32 --- /dev/null +++ b/S2OJ/1548/data/data20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03be3dfa983ffa5cb2db4e696522625c98da04789240841c0813af34653b84c +size 1289325 diff --git a/S2OJ/1548/data/data20.out b/S2OJ/1548/data/data20.out new file mode 100644 index 00000000..018e5442 --- /dev/null +++ b/S2OJ/1548/data/data20.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa85d4a34da4634a9c23451e25cbd173cb48f5bb6cb2c8eea1d18aaa60ccc34 +size 11 diff --git a/S2OJ/1548/data/data21.in b/S2OJ/1548/data/data21.in new file mode 100644 index 00000000..b26f8d9e --- /dev/null +++ b/S2OJ/1548/data/data21.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00517cc9fcbb082006ca05797512feb42edf3912b84de536b1532491783b1827 +size 1179812 diff --git a/S2OJ/1548/data/data21.out b/S2OJ/1548/data/data21.out new file mode 100644 index 00000000..d790bd49 --- /dev/null +++ b/S2OJ/1548/data/data21.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6d31a5983a91251bfae5aefa1c0a19d8ba3cf601d0e8a706b4cfa9661a6b8a +size 2 diff --git a/S2OJ/1548/data/data22.in b/S2OJ/1548/data/data22.in new file mode 100644 index 00000000..3f5bef32 --- /dev/null +++ b/S2OJ/1548/data/data22.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03be3dfa983ffa5cb2db4e696522625c98da04789240841c0813af34653b84c +size 1289325 diff --git a/S2OJ/1548/data/data22.out b/S2OJ/1548/data/data22.out new file mode 100644 index 00000000..018e5442 --- /dev/null +++ b/S2OJ/1548/data/data22.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa85d4a34da4634a9c23451e25cbd173cb48f5bb6cb2c8eea1d18aaa60ccc34 +size 11 diff --git a/S2OJ/1548/data/data23.in b/S2OJ/1548/data/data23.in new file mode 100644 index 00000000..b26f8d9e --- /dev/null +++ b/S2OJ/1548/data/data23.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00517cc9fcbb082006ca05797512feb42edf3912b84de536b1532491783b1827 +size 1179812 diff --git a/S2OJ/1548/data/data23.out b/S2OJ/1548/data/data23.out new file mode 100644 index 00000000..d790bd49 --- /dev/null +++ b/S2OJ/1548/data/data23.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6d31a5983a91251bfae5aefa1c0a19d8ba3cf601d0e8a706b4cfa9661a6b8a +size 2 diff --git a/S2OJ/1548/data/data24.in b/S2OJ/1548/data/data24.in new file mode 100644 index 00000000..3f5bef32 --- /dev/null +++ b/S2OJ/1548/data/data24.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03be3dfa983ffa5cb2db4e696522625c98da04789240841c0813af34653b84c +size 1289325 diff --git a/S2OJ/1548/data/data24.out b/S2OJ/1548/data/data24.out new file mode 100644 index 00000000..018e5442 --- /dev/null +++ b/S2OJ/1548/data/data24.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa85d4a34da4634a9c23451e25cbd173cb48f5bb6cb2c8eea1d18aaa60ccc34 +size 11 diff --git a/S2OJ/1548/data/data25.in b/S2OJ/1548/data/data25.in new file mode 100644 index 00000000..b26f8d9e --- /dev/null +++ b/S2OJ/1548/data/data25.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00517cc9fcbb082006ca05797512feb42edf3912b84de536b1532491783b1827 +size 1179812 diff --git a/S2OJ/1548/data/data25.out b/S2OJ/1548/data/data25.out new file mode 100644 index 00000000..d790bd49 --- /dev/null +++ b/S2OJ/1548/data/data25.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6d31a5983a91251bfae5aefa1c0a19d8ba3cf601d0e8a706b4cfa9661a6b8a +size 2 diff --git a/S2OJ/1548/data/data26.in b/S2OJ/1548/data/data26.in new file mode 100644 index 00000000..6fa02433 --- /dev/null +++ b/S2OJ/1548/data/data26.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a4d8fe06303eacb83f8536a07f5ff297112bdb859b0c369f3ff11de7a0e5e9 +size 1300007 diff --git a/S2OJ/1548/data/data26.out b/S2OJ/1548/data/data26.out new file mode 100644 index 00000000..55013659 --- /dev/null +++ b/S2OJ/1548/data/data26.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745c29598375caaf2f57988ed29f4afd882d17fa42360b84ce42f8e92634dc11 +size 13 diff --git a/S2OJ/1548/data/data27.in b/S2OJ/1548/data/data27.in new file mode 100644 index 00000000..d8ba4f88 --- /dev/null +++ b/S2OJ/1548/data/data27.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e6f1f5f8e971a94f1842574154dc59f52619eb5184e64e933f187f272bc325 +size 1277477 diff --git a/S2OJ/1548/data/data27.out b/S2OJ/1548/data/data27.out new file mode 100644 index 00000000..083ccda4 --- /dev/null +++ b/S2OJ/1548/data/data27.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050ace3dd6cb0d23c7bae7c7777b7f94bab3475800db7b2707ed22bb3fa1fd21 +size 13 diff --git a/S2OJ/1548/data/data28.in b/S2OJ/1548/data/data28.in new file mode 100644 index 00000000..9c8d96fa --- /dev/null +++ b/S2OJ/1548/data/data28.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec2d043827dfce1e06cfb28da6d67b6c389a958900acfd6b2a4bd4e02edcaa14 +size 1232228 diff --git a/S2OJ/1548/data/data28.out b/S2OJ/1548/data/data28.out new file mode 100644 index 00000000..e4f73b6b --- /dev/null +++ b/S2OJ/1548/data/data28.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b72320e39f6415db73ed90fa2c446465766498dd875fe7aadc82311a0c9ad71 +size 13 diff --git a/S2OJ/1548/data/data29.in b/S2OJ/1548/data/data29.in new file mode 100644 index 00000000..fa44cc13 --- /dev/null +++ b/S2OJ/1548/data/data29.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16dc31bda8f47a6415030eb8b7651f9f3c9adbb5032b9a5442849b6dab41b06 +size 1187082 diff --git a/S2OJ/1548/data/data29.out b/S2OJ/1548/data/data29.out new file mode 100644 index 00000000..e4f73b6b --- /dev/null +++ b/S2OJ/1548/data/data29.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b72320e39f6415db73ed90fa2c446465766498dd875fe7aadc82311a0c9ad71 +size 13 diff --git a/S2OJ/1548/data/data3.in b/S2OJ/1548/data/data3.in new file mode 100644 index 00000000..48ff6aec --- /dev/null +++ b/S2OJ/1548/data/data3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864ca66365f6dacab136fe55c9ac42e8988594c81375b11624d4a9d75e5131ad +size 133 diff --git a/S2OJ/1548/data/data3.out b/S2OJ/1548/data/data3.out new file mode 100644 index 00000000..018e5442 --- /dev/null +++ b/S2OJ/1548/data/data3.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa85d4a34da4634a9c23451e25cbd173cb48f5bb6cb2c8eea1d18aaa60ccc34 +size 11 diff --git a/S2OJ/1548/data/data30.in b/S2OJ/1548/data/data30.in new file mode 100644 index 00000000..fa72b9f4 --- /dev/null +++ b/S2OJ/1548/data/data30.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f1e20237cb9e41fc4b167a6b3a4fe7c25271bf9764f28f2d6801498241d5d8 +size 1187143 diff --git a/S2OJ/1548/data/data30.out b/S2OJ/1548/data/data30.out new file mode 100644 index 00000000..ec35b0bb --- /dev/null +++ b/S2OJ/1548/data/data30.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9d752703862ad085a7d4d08d67954775baedd0244b508a4becd2ebabfc2e13 +size 9 diff --git a/S2OJ/1548/data/data4.in b/S2OJ/1548/data/data4.in new file mode 100644 index 00000000..48ff6aec --- /dev/null +++ b/S2OJ/1548/data/data4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864ca66365f6dacab136fe55c9ac42e8988594c81375b11624d4a9d75e5131ad +size 133 diff --git a/S2OJ/1548/data/data4.out b/S2OJ/1548/data/data4.out new file mode 100644 index 00000000..018e5442 --- /dev/null +++ b/S2OJ/1548/data/data4.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa85d4a34da4634a9c23451e25cbd173cb48f5bb6cb2c8eea1d18aaa60ccc34 +size 11 diff --git a/S2OJ/1548/data/data5.in b/S2OJ/1548/data/data5.in new file mode 100644 index 00000000..6b443535 --- /dev/null +++ b/S2OJ/1548/data/data5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7e0d7e6f20c392e30b31125af773fe5b966d8baa569cc5f06cabb9aad78a96 +size 115 diff --git a/S2OJ/1548/data/data5.out b/S2OJ/1548/data/data5.out new file mode 100644 index 00000000..ca267b30 --- /dev/null +++ b/S2OJ/1548/data/data5.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1121cfccd5913f0a63fec40a6ffd44ea64f9dc135c66634ba001d10bcf4302a2 +size 2 diff --git a/S2OJ/1548/data/data6.in b/S2OJ/1548/data/data6.in new file mode 100644 index 00000000..4dee5393 --- /dev/null +++ b/S2OJ/1548/data/data6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c853fcebf3a54c95491086b597d4299c6c956059b4273143cfeec8834f5ec7 +size 14305 diff --git a/S2OJ/1548/data/data6.out b/S2OJ/1548/data/data6.out new file mode 100644 index 00000000..f0e0b309 --- /dev/null +++ b/S2OJ/1548/data/data6.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38c3bd5ec97d47f7a17d787040c7b467910ba48ca7ff46ea09620e6ef330ad7 +size 10 diff --git a/S2OJ/1548/data/data7.in b/S2OJ/1548/data/data7.in new file mode 100644 index 00000000..cb52d610 --- /dev/null +++ b/S2OJ/1548/data/data7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d787f83de03afcd43e4de0a869586920bf881054817cf3489189615e3faeaa7a +size 19904 diff --git a/S2OJ/1548/data/data7.out b/S2OJ/1548/data/data7.out new file mode 100644 index 00000000..f0e0b309 --- /dev/null +++ b/S2OJ/1548/data/data7.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38c3bd5ec97d47f7a17d787040c7b467910ba48ca7ff46ea09620e6ef330ad7 +size 10 diff --git a/S2OJ/1548/data/data8.in b/S2OJ/1548/data/data8.in new file mode 100644 index 00000000..eb3e4d8f --- /dev/null +++ b/S2OJ/1548/data/data8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81dcdf9fa79bdd0ce73cc587f8e4c5d2e1fba503777807a0a878ae433667ccde +size 20005 diff --git a/S2OJ/1548/data/data8.out b/S2OJ/1548/data/data8.out new file mode 100644 index 00000000..f0e0b309 --- /dev/null +++ b/S2OJ/1548/data/data8.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38c3bd5ec97d47f7a17d787040c7b467910ba48ca7ff46ea09620e6ef330ad7 +size 10 diff --git a/S2OJ/1548/data/data9.in b/S2OJ/1548/data/data9.in new file mode 100644 index 00000000..cb52d610 --- /dev/null +++ b/S2OJ/1548/data/data9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d787f83de03afcd43e4de0a869586920bf881054817cf3489189615e3faeaa7a +size 19904 diff --git a/S2OJ/1548/data/data9.out b/S2OJ/1548/data/data9.out new file mode 100644 index 00000000..f0e0b309 --- /dev/null +++ b/S2OJ/1548/data/data9.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38c3bd5ec97d47f7a17d787040c7b467910ba48ca7ff46ea09620e6ef330ad7 +size 10 diff --git a/S2OJ/1548/data/ex_data1.in b/S2OJ/1548/data/ex_data1.in new file mode 100644 index 00000000..0bee4a28 --- /dev/null +++ b/S2OJ/1548/data/ex_data1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33846158c2e4b26602b89c3f6a9d5be694fe1f70fe2b5624ad6599e201d9da83 +size 14 diff --git a/S2OJ/1548/data/ex_data1.out b/S2OJ/1548/data/ex_data1.out new file mode 100644 index 00000000..38118f32 --- /dev/null +++ b/S2OJ/1548/data/ex_data1.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c234e5e8472b6ac51c1ae1cab3fe06fad053beb8ebfd8977b010655bfdd3c3 +size 2 diff --git a/S2OJ/1548/data/ex_data2.in b/S2OJ/1548/data/ex_data2.in new file mode 100644 index 00000000..ffeb48ac --- /dev/null +++ b/S2OJ/1548/data/ex_data2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6003ecd96ca6588045018d876c609e3a6eba69f200a78db6ec85a00bb4881b5d +size 587 diff --git a/S2OJ/1548/data/ex_data2.out b/S2OJ/1548/data/ex_data2.out new file mode 100644 index 00000000..d790bd49 --- /dev/null +++ b/S2OJ/1548/data/ex_data2.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6d31a5983a91251bfae5aefa1c0a19d8ba3cf601d0e8a706b4cfa9661a6b8a +size 2 diff --git a/S2OJ/1548/data/ex_data3.in b/S2OJ/1548/data/ex_data3.in new file mode 100644 index 00000000..98887eeb --- /dev/null +++ b/S2OJ/1548/data/ex_data3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be582bcaa4bbcb03c9a657ec8e8d854b16c5dd5f1f299e7eacc364aa9b08dca6 +size 99173 diff --git a/S2OJ/1548/data/ex_data3.out b/S2OJ/1548/data/ex_data3.out new file mode 100644 index 00000000..38118f32 --- /dev/null +++ b/S2OJ/1548/data/ex_data3.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c234e5e8472b6ac51c1ae1cab3fe06fad053beb8ebfd8977b010655bfdd3c3 +size 2 diff --git a/S2OJ/1548/data/problem.conf b/S2OJ/1548/data/problem.conf new file mode 100644 index 00000000..174a4c5a --- /dev/null +++ b/S2OJ/1548/data/problem.conf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cc732502e49ea1e4fbb9cb9e4c73cae86962c86887ae3dc00eb46439fbb02a +size 533