diff --git a/S2OJ/1685/1685.cpp b/S2OJ/1685/1685.cpp new file mode 100644 index 00000000..7a3a3f2d --- /dev/null +++ b/S2OJ/1685/1685.cpp @@ -0,0 +1,54 @@ +#include +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +std::pair calc(int n, int b, int x) { + int k = std::ceil(1.0 * x / b); + return {n - k, x - k * b}; +} + +int main() { + std::ios::sync_with_stdio(false); + cin.tie(nullptr); + + int t; + + cin >> t; + + while (t--) { + int n, m, a, b; + + cin >> n >> m >> a >> b; + + int s = b, t = a; + + while (n && m) { + int k = std::min( + std::ceil(static_cast(s) / m), + std::ceil(static_cast(t) / n)); + int x = k * n, y = k * m; + + while (m && x >= t) { + x -= t; + t = a; + m--; + } + + while (n && y >= s) { + y -= s; + s = b; + n--; + } + + t -= x; + s -= y; + } + + cout << n << endl; + } + + return 0; +} diff --git a/S2OJ/1685/data/ex_tank1.ans b/S2OJ/1685/data/ex_tank1.ans new file mode 100644 index 00000000..7e355105 --- /dev/null +++ b/S2OJ/1685/data/ex_tank1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3762e5314d2a84c306ecb1bb5b746b06e2dfa333e6e6c0b4b9300440bdd8644 +size 10 diff --git a/S2OJ/1685/data/ex_tank1.in b/S2OJ/1685/data/ex_tank1.in new file mode 100644 index 00000000..594e432d --- /dev/null +++ b/S2OJ/1685/data/ex_tank1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4f3bedf252b4298d276d5c7a6c024403ad0513f6d8077886b06ca102dd96d0 +size 60 diff --git a/S2OJ/1685/data/ex_tank2.ans b/S2OJ/1685/data/ex_tank2.ans new file mode 100644 index 00000000..78bb1d05 --- /dev/null +++ b/S2OJ/1685/data/ex_tank2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700de13bacfb6b07af10c2e26256a8eaa9571c5929c3270fc316668dcdc3d4aa +size 27 diff --git a/S2OJ/1685/data/ex_tank2.in b/S2OJ/1685/data/ex_tank2.in new file mode 100644 index 00000000..1d07f5ff --- /dev/null +++ b/S2OJ/1685/data/ex_tank2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e6f5d2a1b421dcf58a262f5faa0788e8e100b9a7dd7065b9e5844f8ea0c137 +size 120 diff --git a/S2OJ/1685/data/problem.conf b/S2OJ/1685/data/problem.conf new file mode 100644 index 00000000..33e1f8ed --- /dev/null +++ b/S2OJ/1685/data/problem.conf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae130d466b3819b42c7d977e1d617f2b21f1e9dea71234576e8e9a4912605825 +size 384 diff --git a/S2OJ/1685/data/tank1.ans b/S2OJ/1685/data/tank1.ans new file mode 100644 index 00000000..cd7ab8c2 --- /dev/null +++ b/S2OJ/1685/data/tank1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b910137b03c513e7e4079a8a9b0c2a36ab5a418816dea22294ff079530b510b +size 10 diff --git a/S2OJ/1685/data/tank1.in b/S2OJ/1685/data/tank1.in new file mode 100644 index 00000000..c8f6582d --- /dev/null +++ b/S2OJ/1685/data/tank1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a975d35304800b70db5dc8bcc72c1a9da66a22ab541dc7b64737fead1b4a616b +size 53 diff --git a/S2OJ/1685/data/tank10.ans b/S2OJ/1685/data/tank10.ans new file mode 100644 index 00000000..2519d110 --- /dev/null +++ b/S2OJ/1685/data/tank10.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3b85cab6b6daefdf7dca23eb28d15fa39bc6e87697cb0a30e5e16abc57df3f +size 23 diff --git a/S2OJ/1685/data/tank10.in b/S2OJ/1685/data/tank10.in new file mode 100644 index 00000000..6d947fd1 --- /dev/null +++ b/S2OJ/1685/data/tank10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6125b4c2257fd7e4f05d8fca842ef2f955fdc2151302f21b9928e7b4594670ea +size 162 diff --git a/S2OJ/1685/data/tank11.ans b/S2OJ/1685/data/tank11.ans new file mode 100644 index 00000000..73fe4b33 --- /dev/null +++ b/S2OJ/1685/data/tank11.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66667da6be0d194234698c619f94e26752d102bdcbb23a42516636357e24252 +size 18 diff --git a/S2OJ/1685/data/tank11.in b/S2OJ/1685/data/tank11.in new file mode 100644 index 00000000..76b86658 --- /dev/null +++ b/S2OJ/1685/data/tank11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f523e5e3bc5ed83887bf503fa97f2fe476aba1da51e422f2dbc0077704bc305 +size 162 diff --git a/S2OJ/1685/data/tank12.ans b/S2OJ/1685/data/tank12.ans new file mode 100644 index 00000000..7cedd9b2 --- /dev/null +++ b/S2OJ/1685/data/tank12.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f95d75fa9255b472d5557d08fa653275050ca77fa780a9e0adccb84b6252fd7 +size 30 diff --git a/S2OJ/1685/data/tank12.in b/S2OJ/1685/data/tank12.in new file mode 100644 index 00000000..c1fe1629 --- /dev/null +++ b/S2OJ/1685/data/tank12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8360a43d39f5d45c6954db675849af5744a951c14844fdeccf210d800e6c80 +size 162 diff --git a/S2OJ/1685/data/tank13.ans b/S2OJ/1685/data/tank13.ans new file mode 100644 index 00000000..7f5c71d1 --- /dev/null +++ b/S2OJ/1685/data/tank13.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c3aab657a5d3662c0dd5b2859eb29a9ff6368bd2177902f35b2ae6f78b2199 +size 18 diff --git a/S2OJ/1685/data/tank13.in b/S2OJ/1685/data/tank13.in new file mode 100644 index 00000000..3f8bc69c --- /dev/null +++ b/S2OJ/1685/data/tank13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df2d74efe6c5d4ff8748209e042646f3cd2e6f1e6910a61f1d7fa33cb71e56e +size 102 diff --git a/S2OJ/1685/data/tank14.ans b/S2OJ/1685/data/tank14.ans new file mode 100644 index 00000000..73823c9f --- /dev/null +++ b/S2OJ/1685/data/tank14.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e96bb5dfd8f83e245f4e9959bb2923726dd5703395e563bca77a7fba49a9be +size 21 diff --git a/S2OJ/1685/data/tank14.in b/S2OJ/1685/data/tank14.in new file mode 100644 index 00000000..7c607248 --- /dev/null +++ b/S2OJ/1685/data/tank14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96a0247f5d8730839dd435e1297d84fcebf98683aabb2895836f5ba287dbed03 +size 102 diff --git a/S2OJ/1685/data/tank15.ans b/S2OJ/1685/data/tank15.ans new file mode 100644 index 00000000..331fd806 --- /dev/null +++ b/S2OJ/1685/data/tank15.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a44734f6b17e8494135f1335dcd9750aadc9aed73cbfb5ad8a376095a9905e +size 22 diff --git a/S2OJ/1685/data/tank15.in b/S2OJ/1685/data/tank15.in new file mode 100644 index 00000000..9353cf6d --- /dev/null +++ b/S2OJ/1685/data/tank15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:867a8be5a6ae292fb633fc8fdaab8dc744a54a0d2b1335b92cd7174445d46cca +size 102 diff --git a/S2OJ/1685/data/tank16.ans b/S2OJ/1685/data/tank16.ans new file mode 100644 index 00000000..ef7bffb0 --- /dev/null +++ b/S2OJ/1685/data/tank16.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232cc670b49cd4bd4153c915eb1bb754c447ab411004d44bc94d89deed8599ff +size 17 diff --git a/S2OJ/1685/data/tank16.in b/S2OJ/1685/data/tank16.in new file mode 100644 index 00000000..7fc35e0e --- /dev/null +++ b/S2OJ/1685/data/tank16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14c77255082010b4337f1e9f6bafd8c365e1d43222f51e674f08941a7960620 +size 102 diff --git a/S2OJ/1685/data/tank17.ans b/S2OJ/1685/data/tank17.ans new file mode 100644 index 00000000..e3066756 --- /dev/null +++ b/S2OJ/1685/data/tank17.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95fa8db778e0e168baa680405b6e67d19b757ef6fc239dd321d068ffaa4ae2f6 +size 22 diff --git a/S2OJ/1685/data/tank17.in b/S2OJ/1685/data/tank17.in new file mode 100644 index 00000000..464a609b --- /dev/null +++ b/S2OJ/1685/data/tank17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d9f12bdd8e5fe3d34801177ff2af4e8bd065653fb288a4bf5747750961d2f4 +size 172 diff --git a/S2OJ/1685/data/tank18.ans b/S2OJ/1685/data/tank18.ans new file mode 100644 index 00000000..6ac37ce3 --- /dev/null +++ b/S2OJ/1685/data/tank18.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14bacd3d802f9d189de14eb35798c99e50c89790babeff38f39858f9d9b8c65 +size 21 diff --git a/S2OJ/1685/data/tank18.in b/S2OJ/1685/data/tank18.in new file mode 100644 index 00000000..cfcb7e18 --- /dev/null +++ b/S2OJ/1685/data/tank18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6863438b9af751e75660d9c71ba4251ad7f79f1498cc4ef6f26975eaa292974f +size 172 diff --git a/S2OJ/1685/data/tank19.ans b/S2OJ/1685/data/tank19.ans new file mode 100644 index 00000000..2fc5e045 --- /dev/null +++ b/S2OJ/1685/data/tank19.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec6363961b4b76b9537003ab4c5aef9418b4dffa5443db4ce3a8282b60d0bc3 +size 22 diff --git a/S2OJ/1685/data/tank19.in b/S2OJ/1685/data/tank19.in new file mode 100644 index 00000000..873df6a5 --- /dev/null +++ b/S2OJ/1685/data/tank19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b451015887b4c86079cfbef428c90512b2e87c27b2cfdb7070a5db01e879824c +size 171 diff --git a/S2OJ/1685/data/tank2.ans b/S2OJ/1685/data/tank2.ans new file mode 100644 index 00000000..d954b3cd --- /dev/null +++ b/S2OJ/1685/data/tank2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a09b32ee11d96c43a090cf4745eb900c76d180fa121683a83b550b2d5029096 +size 12 diff --git a/S2OJ/1685/data/tank2.in b/S2OJ/1685/data/tank2.in new file mode 100644 index 00000000..0dfe1814 --- /dev/null +++ b/S2OJ/1685/data/tank2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e25b1e52f2bb882a6ea8eaa2b5752e09a79b272c9196b65d8ec9596f79f6b39e +size 54 diff --git a/S2OJ/1685/data/tank20.ans b/S2OJ/1685/data/tank20.ans new file mode 100644 index 00000000..28d0c7a2 --- /dev/null +++ b/S2OJ/1685/data/tank20.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84d9a9131a82796f1d047bf4c8af32316d7ba7b3baac360cf48ef209aa93f04 +size 16 diff --git a/S2OJ/1685/data/tank20.in b/S2OJ/1685/data/tank20.in new file mode 100644 index 00000000..35bea544 --- /dev/null +++ b/S2OJ/1685/data/tank20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcad889bee59ab7d7a6eac99b8e35e20a0eef57aef98f178a7db8c194abeced6 +size 171 diff --git a/S2OJ/1685/data/tank21.ans b/S2OJ/1685/data/tank21.ans new file mode 100644 index 00000000..ab8b6969 --- /dev/null +++ b/S2OJ/1685/data/tank21.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda6a03685c3b812332d725b8dc7311501947483c4fec6ce1fae270bd953e915 +size 27 diff --git a/S2OJ/1685/data/tank21.in b/S2OJ/1685/data/tank21.in new file mode 100644 index 00000000..6cbc0d27 --- /dev/null +++ b/S2OJ/1685/data/tank21.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429f0c280368ff87ff3331123490d0a707d961b8878facd075f233ac2bed7814 +size 171 diff --git a/S2OJ/1685/data/tank22.ans b/S2OJ/1685/data/tank22.ans new file mode 100644 index 00000000..71005272 --- /dev/null +++ b/S2OJ/1685/data/tank22.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bfc6946ae1e074b50a86c70ad77358d8b9857d198137d752f252f9e2f3a146 +size 28 diff --git a/S2OJ/1685/data/tank22.in b/S2OJ/1685/data/tank22.in new file mode 100644 index 00000000..2c852130 --- /dev/null +++ b/S2OJ/1685/data/tank22.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2066ea69dd6fdc518e1807db641d721b1942621b9ab74eba0f658cfea58be74f +size 170 diff --git a/S2OJ/1685/data/tank23.ans b/S2OJ/1685/data/tank23.ans new file mode 100644 index 00000000..5da0d0cc --- /dev/null +++ b/S2OJ/1685/data/tank23.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:988b60b5589a88c9d6d815b06c3a19bc16d0e71fd10f531dc4d03bbe2d60135c +size 27 diff --git a/S2OJ/1685/data/tank23.in b/S2OJ/1685/data/tank23.in new file mode 100644 index 00000000..ea0acf68 --- /dev/null +++ b/S2OJ/1685/data/tank23.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d31ca47f9e096a5a5a2c1594c70834c2d83f2ac5c37090048988dcafd3c56a +size 172 diff --git a/S2OJ/1685/data/tank24.ans b/S2OJ/1685/data/tank24.ans new file mode 100644 index 00000000..851233fd --- /dev/null +++ b/S2OJ/1685/data/tank24.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0209f2bd572c73106e87f5471806935eca7ea289932600b54a59dfebef5abbd6 +size 27 diff --git a/S2OJ/1685/data/tank24.in b/S2OJ/1685/data/tank24.in new file mode 100644 index 00000000..9930f850 --- /dev/null +++ b/S2OJ/1685/data/tank24.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9d8f80682fdc2ae4a95b408c9a31b3e2010611031b536d4f3fcd53c5500fc69 +size 170 diff --git a/S2OJ/1685/data/tank25.ans b/S2OJ/1685/data/tank25.ans new file mode 100644 index 00000000..cf09c336 --- /dev/null +++ b/S2OJ/1685/data/tank25.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f505af229c9de345ed3031d9c5511c23edb18fa96fbc2ad277cef18ac2318bc +size 22 diff --git a/S2OJ/1685/data/tank25.in b/S2OJ/1685/data/tank25.in new file mode 100644 index 00000000..ccc47c02 --- /dev/null +++ b/S2OJ/1685/data/tank25.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a99b03209c847e9b69d314e18adcedc4f488eca5e07679bd2604e696e04ff2c +size 172 diff --git a/S2OJ/1685/data/tank26.ans b/S2OJ/1685/data/tank26.ans new file mode 100644 index 00000000..5e50cf4e --- /dev/null +++ b/S2OJ/1685/data/tank26.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87325b3b019cf8a9b862c27ad1c4022a039b1671fe69d5e2d965e133c103031a +size 21 diff --git a/S2OJ/1685/data/tank26.in b/S2OJ/1685/data/tank26.in new file mode 100644 index 00000000..025bcb96 --- /dev/null +++ b/S2OJ/1685/data/tank26.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2ec767e482429012738f5c3bf1de316070b6a46b70fea330869faaa14e6c6f +size 172 diff --git a/S2OJ/1685/data/tank27.ans b/S2OJ/1685/data/tank27.ans new file mode 100644 index 00000000..fcf82386 --- /dev/null +++ b/S2OJ/1685/data/tank27.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbac994273a85e9987adb4ea4df525c842450807a629d00dcab4935784e890e1 +size 16 diff --git a/S2OJ/1685/data/tank27.in b/S2OJ/1685/data/tank27.in new file mode 100644 index 00000000..376be4a4 --- /dev/null +++ b/S2OJ/1685/data/tank27.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6fabc1be925fe6fb90bea3182fa132b30c0f91df8d2f8a0d5a7c25e58691019 +size 172 diff --git a/S2OJ/1685/data/tank28.ans b/S2OJ/1685/data/tank28.ans new file mode 100644 index 00000000..8509d730 --- /dev/null +++ b/S2OJ/1685/data/tank28.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc81f26eacd553111d257691f211c7748752600d81e4caf80c753ba344dca471 +size 34 diff --git a/S2OJ/1685/data/tank28.in b/S2OJ/1685/data/tank28.in new file mode 100644 index 00000000..8e2c106e --- /dev/null +++ b/S2OJ/1685/data/tank28.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e6ec00426215309bd9a47c617b0a8668814dbf8a2b81680d0ed65d9aa3f118 +size 172 diff --git a/S2OJ/1685/data/tank29.ans b/S2OJ/1685/data/tank29.ans new file mode 100644 index 00000000..85dd572e --- /dev/null +++ b/S2OJ/1685/data/tank29.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d18ed4af7b5c31bfe679259da26e64b527c07ac1dd729630c29f1d2a31305f +size 28 diff --git a/S2OJ/1685/data/tank29.in b/S2OJ/1685/data/tank29.in new file mode 100644 index 00000000..e736b173 --- /dev/null +++ b/S2OJ/1685/data/tank29.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13115fcbd1639bdd1c0f87c2a4e000d6a6c7dedf0f28f00ed6e1e5b5811e7244 +size 171 diff --git a/S2OJ/1685/data/tank3.ans b/S2OJ/1685/data/tank3.ans new file mode 100644 index 00000000..bb08d64c --- /dev/null +++ b/S2OJ/1685/data/tank3.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21c366c6713b52f423ea24c4df04fec6cae42f02aff72dd1158999c843dc5b5 +size 11 diff --git a/S2OJ/1685/data/tank3.in b/S2OJ/1685/data/tank3.in new file mode 100644 index 00000000..b9c029ec --- /dev/null +++ b/S2OJ/1685/data/tank3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc6b1ee9093d0cefad912f6f794a64c54a5ac927abf2ce0665d8211777a6039 +size 55 diff --git a/S2OJ/1685/data/tank30.ans b/S2OJ/1685/data/tank30.ans new file mode 100644 index 00000000..54749c85 --- /dev/null +++ b/S2OJ/1685/data/tank30.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:186bdac533a23eb5310b1f5fcb451cd4eb366de1617873cd569455916c5c5b07 +size 26 diff --git a/S2OJ/1685/data/tank30.in b/S2OJ/1685/data/tank30.in new file mode 100644 index 00000000..16886619 --- /dev/null +++ b/S2OJ/1685/data/tank30.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eebfc856da77f76da4889d6e47212eedeb077cc770c2fa4d69f1ed43f7a777a +size 172 diff --git a/S2OJ/1685/data/tank31.ans b/S2OJ/1685/data/tank31.ans new file mode 100644 index 00000000..cdae2dcb --- /dev/null +++ b/S2OJ/1685/data/tank31.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578092e4574ad09e0f8903a88463377474ed5fefa083a09dafb37df66260de1b +size 15 diff --git a/S2OJ/1685/data/tank31.in b/S2OJ/1685/data/tank31.in new file mode 100644 index 00000000..4804f89a --- /dev/null +++ b/S2OJ/1685/data/tank31.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e8a5ccd0b22ecac257449e980f4d4e67783a360ad696206eba4e04a1318f5 +size 172 diff --git a/S2OJ/1685/data/tank32.ans b/S2OJ/1685/data/tank32.ans new file mode 100644 index 00000000..805f460c --- /dev/null +++ b/S2OJ/1685/data/tank32.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8e46bbb719e768455bf96c46c40eb3c5bece65805633d4c59a5cec621f8657 +size 21 diff --git a/S2OJ/1685/data/tank32.in b/S2OJ/1685/data/tank32.in new file mode 100644 index 00000000..67ab8bef --- /dev/null +++ b/S2OJ/1685/data/tank32.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec19c380a1182ac36ed7ed5720da992c171f4eb88bec613765f9cf8b994e605d +size 170 diff --git a/S2OJ/1685/data/tank33.ans b/S2OJ/1685/data/tank33.ans new file mode 100644 index 00000000..0b07e192 --- /dev/null +++ b/S2OJ/1685/data/tank33.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81731714366cc7c1d4bdc974e286a2dc33356154192940cd6b5480adc9f3eae3 +size 27 diff --git a/S2OJ/1685/data/tank33.in b/S2OJ/1685/data/tank33.in new file mode 100644 index 00000000..adb1624f --- /dev/null +++ b/S2OJ/1685/data/tank33.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5fe7cc49169d540740e994460b433b38a91863d5cdbd2c64f2c666bd9b82265 +size 171 diff --git a/S2OJ/1685/data/tank34.ans b/S2OJ/1685/data/tank34.ans new file mode 100644 index 00000000..29074755 --- /dev/null +++ b/S2OJ/1685/data/tank34.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99290c28563930a819f61d65a0630a3620c70e07c277ff795ac80645576d2d3e +size 22 diff --git a/S2OJ/1685/data/tank34.in b/S2OJ/1685/data/tank34.in new file mode 100644 index 00000000..0d98ee96 --- /dev/null +++ b/S2OJ/1685/data/tank34.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ad37bec118752a69cadd75cec3ad876a8e114c5f0ed5d1a1e054b0e9b35890 +size 172 diff --git a/S2OJ/1685/data/tank35.ans b/S2OJ/1685/data/tank35.ans new file mode 100644 index 00000000..22c6db36 --- /dev/null +++ b/S2OJ/1685/data/tank35.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0225bda5818f2f42daa9597d1770a7d7c5648ae52f37fcec77397cd1f7e8e5 +size 22 diff --git a/S2OJ/1685/data/tank35.in b/S2OJ/1685/data/tank35.in new file mode 100644 index 00000000..19b11f1d --- /dev/null +++ b/S2OJ/1685/data/tank35.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a56296ef1a04ed67fe68aee33e52bf348c5ab897a90ea35b919be41401fed59 +size 171 diff --git a/S2OJ/1685/data/tank36.ans b/S2OJ/1685/data/tank36.ans new file mode 100644 index 00000000..54334585 --- /dev/null +++ b/S2OJ/1685/data/tank36.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff82c0f890bb0852ab87504df79525c3854a6a3bb70334e954d719f7d3c7334 +size 33 diff --git a/S2OJ/1685/data/tank36.in b/S2OJ/1685/data/tank36.in new file mode 100644 index 00000000..d06678cb --- /dev/null +++ b/S2OJ/1685/data/tank36.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d936c674dfb8eb1c944e85f2d572f6a572f50e689ad1f9af71e1dd987a9010 +size 172 diff --git a/S2OJ/1685/data/tank37.ans b/S2OJ/1685/data/tank37.ans new file mode 100644 index 00000000..753887ef --- /dev/null +++ b/S2OJ/1685/data/tank37.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220179951495aba4e9bbb044be35701492091dbc6c05db96502854766623bf97 +size 27 diff --git a/S2OJ/1685/data/tank37.in b/S2OJ/1685/data/tank37.in new file mode 100644 index 00000000..afde6ab7 --- /dev/null +++ b/S2OJ/1685/data/tank37.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8184d251ce126a9df126207c40e23a15367244b4e35401821c2d05e3381d9ab0 +size 172 diff --git a/S2OJ/1685/data/tank38.ans b/S2OJ/1685/data/tank38.ans new file mode 100644 index 00000000..0d8f77cd --- /dev/null +++ b/S2OJ/1685/data/tank38.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9514e1c0683636b6fba8bbec6cbdb8f7a11a4ab43f2e6a47381454a905d94922 +size 16 diff --git a/S2OJ/1685/data/tank38.in b/S2OJ/1685/data/tank38.in new file mode 100644 index 00000000..cbe52a2a --- /dev/null +++ b/S2OJ/1685/data/tank38.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18555dae3576dfb0c555ff64ac678dfb486f35541ea2a1c71e2bc453442a93e7 +size 171 diff --git a/S2OJ/1685/data/tank39.ans b/S2OJ/1685/data/tank39.ans new file mode 100644 index 00000000..d7c561ba --- /dev/null +++ b/S2OJ/1685/data/tank39.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327c21ec6551865b6c09cb6e1a47d800175fe4ae4d6443da2b8fa599bfb837d2 +size 34 diff --git a/S2OJ/1685/data/tank39.in b/S2OJ/1685/data/tank39.in new file mode 100644 index 00000000..13928984 --- /dev/null +++ b/S2OJ/1685/data/tank39.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0b64a75cf73173505d14b5325de68d74d5938b387299b95112a875c5615b2b +size 170 diff --git a/S2OJ/1685/data/tank4.ans b/S2OJ/1685/data/tank4.ans new file mode 100644 index 00000000..64a8e506 --- /dev/null +++ b/S2OJ/1685/data/tank4.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a68649db50065f5474d5ab36e7e42ac38778fdb6c926f327552d10a96e25bd77 +size 12 diff --git a/S2OJ/1685/data/tank4.in b/S2OJ/1685/data/tank4.in new file mode 100644 index 00000000..8b5612a2 --- /dev/null +++ b/S2OJ/1685/data/tank4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d9d8b221eda8b788cb4f46fdaff7933127caa5d658c4cbb36298bc49139401 +size 56 diff --git a/S2OJ/1685/data/tank40.ans b/S2OJ/1685/data/tank40.ans new file mode 100644 index 00000000..3ba0a234 --- /dev/null +++ b/S2OJ/1685/data/tank40.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bbd5dd792a41c55ae3dc41fd6454b86210c723db389759b53490a52d03459e +size 28 diff --git a/S2OJ/1685/data/tank40.in b/S2OJ/1685/data/tank40.in new file mode 100644 index 00000000..655f8e85 --- /dev/null +++ b/S2OJ/1685/data/tank40.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd5d94d8cdbc02d4c9be0378b58a295cdc3ef1135bde24e9334420864c60af8e +size 170 diff --git a/S2OJ/1685/data/tank5.ans b/S2OJ/1685/data/tank5.ans new file mode 100644 index 00000000..7ade1bc5 --- /dev/null +++ b/S2OJ/1685/data/tank5.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62155a4f6dbd3cb2f08dd34275f06afc6fabcd3d21e9c143c9662bc4cbfe029f +size 16 diff --git a/S2OJ/1685/data/tank5.in b/S2OJ/1685/data/tank5.in new file mode 100644 index 00000000..b0999b26 --- /dev/null +++ b/S2OJ/1685/data/tank5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bbd4f7eca284126911e4711bb2f54ebb70c7ecad6121689c19f042755cc37fa +size 121 diff --git a/S2OJ/1685/data/tank6.ans b/S2OJ/1685/data/tank6.ans new file mode 100644 index 00000000..18cfa6b2 --- /dev/null +++ b/S2OJ/1685/data/tank6.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7334c1d08cfd4c9eb6c3bb2153edc8ae71f2faf171d444a0d7cb394698153c66 +size 19 diff --git a/S2OJ/1685/data/tank6.in b/S2OJ/1685/data/tank6.in new file mode 100644 index 00000000..bf9ddf97 --- /dev/null +++ b/S2OJ/1685/data/tank6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff4d9ffc28e49860d2bc49e5808a656341809007e06b07c5828554648cd01d0 +size 121 diff --git a/S2OJ/1685/data/tank7.ans b/S2OJ/1685/data/tank7.ans new file mode 100644 index 00000000..b0f85299 --- /dev/null +++ b/S2OJ/1685/data/tank7.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2478c8dec8fd63d132f8d78673e10cb1906c309aa4c44d6f258578c872bc94 +size 19 diff --git a/S2OJ/1685/data/tank7.in b/S2OJ/1685/data/tank7.in new file mode 100644 index 00000000..2c8c25f1 --- /dev/null +++ b/S2OJ/1685/data/tank7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afba2cf28fc652c229710d0867470c1adf391c9d3fc205d23c370f30357ee524 +size 118 diff --git a/S2OJ/1685/data/tank8.ans b/S2OJ/1685/data/tank8.ans new file mode 100644 index 00000000..ce873da3 --- /dev/null +++ b/S2OJ/1685/data/tank8.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1773e091d89047472a7708ca32609559f502dc9c458a441d326c55c31a0155 +size 19 diff --git a/S2OJ/1685/data/tank8.in b/S2OJ/1685/data/tank8.in new file mode 100644 index 00000000..898289d4 --- /dev/null +++ b/S2OJ/1685/data/tank8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7646771928c92a926f2c66715454b82fb1dd59f82c39476eae2233cf59fc2d +size 121 diff --git a/S2OJ/1685/data/tank9.ans b/S2OJ/1685/data/tank9.ans new file mode 100644 index 00000000..c5f7452a --- /dev/null +++ b/S2OJ/1685/data/tank9.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d962f6b91269c86d7a9c26acc3daecd4f7301e40b8bea7645d74fe4d0ffe34a +size 19 diff --git a/S2OJ/1685/data/tank9.in b/S2OJ/1685/data/tank9.in new file mode 100644 index 00000000..6abb7924 --- /dev/null +++ b/S2OJ/1685/data/tank9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e79ea24116b1d1ce32a5b132b5ce96f745455d81ecd7cbff6293c7b42d6c1e1 +size 160