diff --git a/Hydro/system_test/2/data/config.yaml b/Hydro/system_test/2/data/config.yaml new file mode 100644 index 00000000..cfaaa073 --- /dev/null +++ b/Hydro/system_test/2/data/config.yaml @@ -0,0 +1,4 @@ +type: default + +time: 0.5s +memory: 256m \ No newline at end of file diff --git a/Hydro/system_test/2/data/data1.ans b/Hydro/system_test/2/data/data1.ans new file mode 100644 index 00000000..ac9cf09e --- /dev/null +++ b/Hydro/system_test/2/data/data1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b846f8f2884d22fff9947c016e4058ec2a956b1d7e2e465fc50d32a1562943b0 +size 8 diff --git a/Hydro/system_test/2/data/data1.in b/Hydro/system_test/2/data/data1.in new file mode 100644 index 00000000..c0dedd44 --- /dev/null +++ b/Hydro/system_test/2/data/data1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691fe2314c4206ab62c15d190b432105c1c702fbb42c829c1320b6dc999dcc22 +size 23 diff --git a/Hydro/system_test/2/data/data2.ans b/Hydro/system_test/2/data/data2.ans new file mode 100644 index 00000000..dffb9719 --- /dev/null +++ b/Hydro/system_test/2/data/data2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa39e0453af1e20ecf71eabee43b3d4a575494e38bb15058f3b91564ff29728 +size 8 diff --git a/Hydro/system_test/2/data/data2.in b/Hydro/system_test/2/data/data2.in new file mode 100644 index 00000000..9901921c --- /dev/null +++ b/Hydro/system_test/2/data/data2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a23e76d3e419ffcbc83003c9985665a4fa3208a8bcf2a6270be4186b4536119 +size 105 diff --git a/Hydro/system_test/2/data/data3.ans b/Hydro/system_test/2/data/data3.ans new file mode 100644 index 00000000..9c1cf8fe --- /dev/null +++ b/Hydro/system_test/2/data/data3.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629141de154559bec7655a2e211afdd9c32ca301c23b07810818a72552291f0f +size 8 diff --git a/Hydro/system_test/2/data/data3.in b/Hydro/system_test/2/data/data3.in new file mode 100644 index 00000000..d8c8d40b --- /dev/null +++ b/Hydro/system_test/2/data/data3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07810028ab1d068c0c8ec08b4c675d5a3357024ed967e8b4372c5b53cfe1995 +size 916 diff --git a/Hydro/system_test/2/data/data4.ans b/Hydro/system_test/2/data/data4.ans new file mode 100644 index 00000000..01c55897 --- /dev/null +++ b/Hydro/system_test/2/data/data4.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1c004852804a5b74e05396f15f9f6d669b70200ac76e47baac8f4dd37c1972 +size 8 diff --git a/Hydro/system_test/2/data/data4.in b/Hydro/system_test/2/data/data4.in new file mode 100644 index 00000000..28c733e5 --- /dev/null +++ b/Hydro/system_test/2/data/data4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0df4ab4231cd89786455597dfadb1c81e01cefc32286c21a35aecb68f58b32f +size 9015 diff --git a/Hydro/system_test/2/data/data5.ans b/Hydro/system_test/2/data/data5.ans new file mode 100644 index 00000000..f53cc5bc --- /dev/null +++ b/Hydro/system_test/2/data/data5.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853f48c5fbacf92bd3bdb18488dfa8504b5194c2ebf82e9c18a2e219d2e0cb51 +size 8 diff --git a/Hydro/system_test/2/data/data5.in b/Hydro/system_test/2/data/data5.in new file mode 100644 index 00000000..f00393a0 --- /dev/null +++ b/Hydro/system_test/2/data/data5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8950be411229c07b428ccba20bf92073e6228d4dedfb4890099f1869c5c9a70c +size 90018 diff --git a/Hydro/system_test/3/data/checker.cc b/Hydro/system_test/3/data/checker.cc new file mode 100644 index 00000000..9dd866d2 --- /dev/null +++ b/Hydro/system_test/3/data/checker.cc @@ -0,0 +1,23 @@ +/** + * @file checker.cpp + * @author Macesuted (i@macesuted.moe) + * @date 2021-10-28 + * + * @copyright Copyright (c) 2021 + * + */ + +#include + +#include "testlib.h" + +using namespace std; + +int main(int argc, char* argv[]) { + registerTestlibCmd(argc, argv); + int n = inf.readInt(); + for (int i = 1; i <= n; i++) + if (ouf.readInt() != i) + quitf(_wa, "Wrong Answer."); + quit(_ok, "Accepted!"); +} diff --git a/Hydro/system_test/3/data/config.yaml b/Hydro/system_test/3/data/config.yaml new file mode 100644 index 00000000..a5a235d0 --- /dev/null +++ b/Hydro/system_test/3/data/config.yaml @@ -0,0 +1,19 @@ +type: default + +time: 1s +memory: 256m + +checker_type: testlib +checker: checker.cc + +cases: + - input: data1.in + - input: data2.in + - input: data3.in + - input: data4.in + - input: data5.in + - input: data6.in + - input: data7.in + - input: data8.in + - input: data9.in + - input: data10.in \ No newline at end of file diff --git a/Hydro/system_test/3/data/data1.in b/Hydro/system_test/3/data/data1.in new file mode 100644 index 00000000..1afab5f7 --- /dev/null +++ b/Hydro/system_test/3/data/data1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4355a46b19d348dc2f57c046f8ef63d4538ebb936000f3c9ee954a27460dd865 +size 2 diff --git a/Hydro/system_test/3/data/data10.in b/Hydro/system_test/3/data/data10.in new file mode 100644 index 00000000..6d6792e1 --- /dev/null +++ b/Hydro/system_test/3/data/data10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa95b43be4cf8bb030d85e663324ecc5247c2af6272672bfd4bbc1020b40582b +size 8 diff --git a/Hydro/system_test/3/data/data2.in b/Hydro/system_test/3/data/data2.in new file mode 100644 index 00000000..f4808fee --- /dev/null +++ b/Hydro/system_test/3/data/data2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:917df3320d778ddbaa5c5c7742bc4046bf803c36ed2b050f30844ed206783469 +size 3 diff --git a/Hydro/system_test/3/data/data3.in b/Hydro/system_test/3/data/data3.in new file mode 100644 index 00000000..e9002468 --- /dev/null +++ b/Hydro/system_test/3/data/data3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea8254c7500ba3de996aa8ad6af399183f04e17d4a8102fde539dbc93a90012 +size 4 diff --git a/Hydro/system_test/3/data/data4.in b/Hydro/system_test/3/data/data4.in new file mode 100644 index 00000000..fc1f4186 --- /dev/null +++ b/Hydro/system_test/3/data/data4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c02ac2d48c863dab2ccf6870455aadfc2cec073b8db269b517c879d76aa6d9 +size 5 diff --git a/Hydro/system_test/3/data/data5.in b/Hydro/system_test/3/data/data5.in new file mode 100644 index 00000000..a07a04d5 --- /dev/null +++ b/Hydro/system_test/3/data/data5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876e13f4e07bb39705302c01f445ffd2d2c3b180a207e4d959d6b671c67da09b +size 6 diff --git a/Hydro/system_test/3/data/data6.in b/Hydro/system_test/3/data/data6.in new file mode 100644 index 00000000..3c2ba8a2 --- /dev/null +++ b/Hydro/system_test/3/data/data6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80500a01f984c764f1a3b486622d0ef7cc5b13fa9bd57ec9015113eaf875597 +size 7 diff --git a/Hydro/system_test/3/data/data7.in b/Hydro/system_test/3/data/data7.in new file mode 100644 index 00000000..1bdb324f --- /dev/null +++ b/Hydro/system_test/3/data/data7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cce36d9f8a9e151b100234af75cca89d55bcb94c153f51847debdf1f39cae45 +size 7 diff --git a/Hydro/system_test/3/data/data8.in b/Hydro/system_test/3/data/data8.in new file mode 100644 index 00000000..242ee748 --- /dev/null +++ b/Hydro/system_test/3/data/data8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd80d7a873341d491936c851964a9793195f37e646f6809dd546e2946f46d283 +size 7 diff --git a/Hydro/system_test/3/data/data9.in b/Hydro/system_test/3/data/data9.in new file mode 100644 index 00000000..3a64047c --- /dev/null +++ b/Hydro/system_test/3/data/data9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26186289e131960d37676f348cc3ee5c4c2fa097034a617bfa20008451549a55 +size 7 diff --git a/Hydro/system_test/5/data/aplusb1.in b/Hydro/system_test/5/data/aplusb1.in new file mode 100644 index 00000000..7aa36a18 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d16d3fc9baf02b7e1f16368d22e0d2b71cc96ac27eb8aa6f752c70ad323a70 +size 5 diff --git a/Hydro/system_test/5/data/aplusb1.out b/Hydro/system_test/5/data/aplusb1.out new file mode 100644 index 00000000..2eb7b22f --- /dev/null +++ b/Hydro/system_test/5/data/aplusb1.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ba1e99dc06b19351323aae0d7370243d586475a634b7f6ff7927fbc72cfaed +size 3 diff --git a/Hydro/system_test/5/data/aplusb10.in b/Hydro/system_test/5/data/aplusb10.in new file mode 100644 index 00000000..504f656f --- /dev/null +++ b/Hydro/system_test/5/data/aplusb10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430e10ff22fee9a0c0d39afb1e2f38721b7296b729f93a3a280b0864819ee6b7 +size 14 diff --git a/Hydro/system_test/5/data/aplusb10.out b/Hydro/system_test/5/data/aplusb10.out new file mode 100644 index 00000000..6b9d2a05 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e549aab080b020db99719011c2d0036264f46c84c360544bc78017b8a71108f +size 8 diff --git a/Hydro/system_test/5/data/aplusb11.in b/Hydro/system_test/5/data/aplusb11.in new file mode 100644 index 00000000..9885f393 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b23303e750da72347d505c6a448929b27fe3bf99684622b65680ad77edf7d944 +size 15 diff --git a/Hydro/system_test/5/data/aplusb11.out b/Hydro/system_test/5/data/aplusb11.out new file mode 100644 index 00000000..fab1d7bd --- /dev/null +++ b/Hydro/system_test/5/data/aplusb11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19260b57c6f201651e8b8303942b15dbea6caf898578eff72ade927f89e0664 +size 8 diff --git a/Hydro/system_test/5/data/aplusb12.in b/Hydro/system_test/5/data/aplusb12.in new file mode 100644 index 00000000..49387dd9 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10abae51258e2fa353b0f92a3f28efcc491c346d5cbf7d71c909efb0fa043721 +size 15 diff --git a/Hydro/system_test/5/data/aplusb12.out b/Hydro/system_test/5/data/aplusb12.out new file mode 100644 index 00000000..ab5c0098 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e12d66b5c1dae3dbd9744426bf7afe85b9135cdc30411aaee737d0039e5a17 +size 9 diff --git a/Hydro/system_test/5/data/aplusb13.in b/Hydro/system_test/5/data/aplusb13.in new file mode 100644 index 00000000..7340b192 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930ba44cf9f8fd454cfd84e973e5401b0acd79d9df15546c7610e82b257ae4f4 +size 14 diff --git a/Hydro/system_test/5/data/aplusb13.out b/Hydro/system_test/5/data/aplusb13.out new file mode 100644 index 00000000..8b3272ef --- /dev/null +++ b/Hydro/system_test/5/data/aplusb13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ca6d30ae09ed88678b769eacd4706106f256eb7b52019efe2466266e2c2443 +size 8 diff --git a/Hydro/system_test/5/data/aplusb14.in b/Hydro/system_test/5/data/aplusb14.in new file mode 100644 index 00000000..76ad32a5 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898f30fb33d2136f1ec6a97e282b2ce420a70aaf4eb92897699d73c856c2bddc +size 12 diff --git a/Hydro/system_test/5/data/aplusb14.out b/Hydro/system_test/5/data/aplusb14.out new file mode 100644 index 00000000..0c8c03da --- /dev/null +++ b/Hydro/system_test/5/data/aplusb14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e0e5a9c438fb68b9da352b88db1b28ec8870a807dcc240d2a402dfdafa8a62 +size 8 diff --git a/Hydro/system_test/5/data/aplusb15.in b/Hydro/system_test/5/data/aplusb15.in new file mode 100644 index 00000000..4ddfeec9 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3714c791746c25081901636f7807c43a9cbc05aa0067fb1a04b529615da2e99 +size 15 diff --git a/Hydro/system_test/5/data/aplusb15.out b/Hydro/system_test/5/data/aplusb15.out new file mode 100644 index 00000000..33f95005 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd3d8c2d3313dcb38bda917f91c54b9eb6aea2f2148697f1893cd5ac4f78823 +size 9 diff --git a/Hydro/system_test/5/data/aplusb16.in b/Hydro/system_test/5/data/aplusb16.in new file mode 100644 index 00000000..61d08c69 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb4a60f99dad0317365e4449a8409762d917c29a103efa9e2a36207c5e71a32 +size 15 diff --git a/Hydro/system_test/5/data/aplusb16.out b/Hydro/system_test/5/data/aplusb16.out new file mode 100644 index 00000000..0e7b448d --- /dev/null +++ b/Hydro/system_test/5/data/aplusb16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad658d4551f2d8271b1c003fec71361dac9c6c83a1c97758ec564c7db571521 +size 8 diff --git a/Hydro/system_test/5/data/aplusb17.in b/Hydro/system_test/5/data/aplusb17.in new file mode 100644 index 00000000..47ae8356 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a95eb4ed5de09b74d8777b51d373b44204288dc80d8293cd2bcb968c0ba7f8 +size 15 diff --git a/Hydro/system_test/5/data/aplusb17.out b/Hydro/system_test/5/data/aplusb17.out new file mode 100644 index 00000000..b67be9b7 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67ec184d361a9e0f72eb1c142bd15d3861219843f1b75909fba9f8783092467 +size 8 diff --git a/Hydro/system_test/5/data/aplusb18.in b/Hydro/system_test/5/data/aplusb18.in new file mode 100644 index 00000000..ea53fabd --- /dev/null +++ b/Hydro/system_test/5/data/aplusb18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683db996260103bb8ec30100d44a6ddf6e174b374941952a3ba81628c1833549 +size 14 diff --git a/Hydro/system_test/5/data/aplusb18.out b/Hydro/system_test/5/data/aplusb18.out new file mode 100644 index 00000000..51b88c46 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cee74d33e3eea4afaa5af04014cd51b54cc4fde2f82a8727b9d86a535a43f2a +size 8 diff --git a/Hydro/system_test/5/data/aplusb19.in b/Hydro/system_test/5/data/aplusb19.in new file mode 100644 index 00000000..d2627fa6 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2374987e4f7d20728b1c7724dcb9ff132f36d08a25e6be583e458ba792619fb7 +size 14 diff --git a/Hydro/system_test/5/data/aplusb19.out b/Hydro/system_test/5/data/aplusb19.out new file mode 100644 index 00000000..70c87c68 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c69f8ea301e0ddea38221f5291671368a179212eebb2635c4d9f7f867e0d1fd +size 8 diff --git a/Hydro/system_test/5/data/aplusb2.in b/Hydro/system_test/5/data/aplusb2.in new file mode 100644 index 00000000..08229055 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e037887a2d18834ba35a425affe5c29734457e3a0a1d7887e518cfd765ba19b3 +size 15 diff --git a/Hydro/system_test/5/data/aplusb2.out b/Hydro/system_test/5/data/aplusb2.out new file mode 100644 index 00000000..5b4990d5 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb2.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6737a57c2522317047c2f42162bcb4229631e5fe4306715f11b589f966f914 +size 8 diff --git a/Hydro/system_test/5/data/aplusb20.in b/Hydro/system_test/5/data/aplusb20.in new file mode 100644 index 00000000..b5f44eab --- /dev/null +++ b/Hydro/system_test/5/data/aplusb20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91ed4d0b1bc2c557cc4b8b893d140eeca08830cccd9431610f9f0318819fe94 +size 15 diff --git a/Hydro/system_test/5/data/aplusb20.out b/Hydro/system_test/5/data/aplusb20.out new file mode 100644 index 00000000..4dfed5f1 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb20.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a641a5237ae2eb657ef75df8c61ee308e863dd33daa37b36898c1287723ad50c +size 9 diff --git a/Hydro/system_test/5/data/aplusb3.in b/Hydro/system_test/5/data/aplusb3.in new file mode 100644 index 00000000..3fc308ae --- /dev/null +++ b/Hydro/system_test/5/data/aplusb3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c01834856fd18236094b5c92c4d6eff3eb755044c8b99ae67b0cbeb5adddb1 +size 15 diff --git a/Hydro/system_test/5/data/aplusb3.out b/Hydro/system_test/5/data/aplusb3.out new file mode 100644 index 00000000..fb827c10 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb3.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4849ac787c9fff0cd709eb9af649d3c8651c5d3c209df60ec8d1b78acc8add87 +size 9 diff --git a/Hydro/system_test/5/data/aplusb4.in b/Hydro/system_test/5/data/aplusb4.in new file mode 100644 index 00000000..81e510b0 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65124f4a12cb6596257ee4ce4cf49f6c44e285b363f88953b0fe01aae9997d2 +size 15 diff --git a/Hydro/system_test/5/data/aplusb4.out b/Hydro/system_test/5/data/aplusb4.out new file mode 100644 index 00000000..a4d91de5 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb4.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb00ad13b6c2b306cc9ab00853b6ced34494d0ff02c03ef6132293dd5e30bb62 +size 9 diff --git a/Hydro/system_test/5/data/aplusb5.in b/Hydro/system_test/5/data/aplusb5.in new file mode 100644 index 00000000..515d4f8c --- /dev/null +++ b/Hydro/system_test/5/data/aplusb5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aee7b0f8c07e0233c57f23cd9ca310d663fe24934904dfb38ac8cfd40a6babe +size 15 diff --git a/Hydro/system_test/5/data/aplusb5.out b/Hydro/system_test/5/data/aplusb5.out new file mode 100644 index 00000000..05e62f1e --- /dev/null +++ b/Hydro/system_test/5/data/aplusb5.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:508de3fbf1a61826380b34b21603896726b498e14e5f5810b3bbc52d7f93445d +size 9 diff --git a/Hydro/system_test/5/data/aplusb6.in b/Hydro/system_test/5/data/aplusb6.in new file mode 100644 index 00000000..1ce98ced --- /dev/null +++ b/Hydro/system_test/5/data/aplusb6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ed6f26ec084dffdc511e2dbd08c5e3935b4070084a4e1cc3967d9e78f06c5d +size 15 diff --git a/Hydro/system_test/5/data/aplusb6.out b/Hydro/system_test/5/data/aplusb6.out new file mode 100644 index 00000000..fcf72e57 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb6.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4f3a393ec5c102573094a0610237846411b3f1183fda1b5b1d135214107f17 +size 9 diff --git a/Hydro/system_test/5/data/aplusb7.in b/Hydro/system_test/5/data/aplusb7.in new file mode 100644 index 00000000..95dbddda --- /dev/null +++ b/Hydro/system_test/5/data/aplusb7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b8ec55f151a3e9dff1c3d36794e5bedded2eb3cd35f0ff5ccb7e34e68cd0be +size 15 diff --git a/Hydro/system_test/5/data/aplusb7.out b/Hydro/system_test/5/data/aplusb7.out new file mode 100644 index 00000000..71776431 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb7.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119847d6af2c85d5f2bd922fddbfab1f655cf8dea41000557ea9bef962a84d29 +size 8 diff --git a/Hydro/system_test/5/data/aplusb8.in b/Hydro/system_test/5/data/aplusb8.in new file mode 100644 index 00000000..a8a0ab3b --- /dev/null +++ b/Hydro/system_test/5/data/aplusb8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a72cfbebc86dd081283739b91f93c9fd3e874ace9c57aeb1e8b7331ca3f5f26 +size 15 diff --git a/Hydro/system_test/5/data/aplusb8.out b/Hydro/system_test/5/data/aplusb8.out new file mode 100644 index 00000000..aff27dab --- /dev/null +++ b/Hydro/system_test/5/data/aplusb8.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d6a0fff9e9c9afcc783eb8f19cb921e6f21a6334e2547ac7f750eb0412e22 +size 8 diff --git a/Hydro/system_test/5/data/aplusb9.in b/Hydro/system_test/5/data/aplusb9.in new file mode 100644 index 00000000..8692e318 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21815454de9db66f2128d4178bffe8cfe619bdde986146e2774141250a91204d +size 15 diff --git a/Hydro/system_test/5/data/aplusb9.out b/Hydro/system_test/5/data/aplusb9.out new file mode 100644 index 00000000..3590d648 --- /dev/null +++ b/Hydro/system_test/5/data/aplusb9.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e48ca1871147bc9ba169163c8eb02af5713e5df98ad5b0b475c92f0f84e096 +size 9 diff --git a/Hydro/system_test/5/data/config.yaml b/Hydro/system_test/5/data/config.yaml new file mode 100644 index 00000000..87af86f2 --- /dev/null +++ b/Hydro/system_test/5/data/config.yaml @@ -0,0 +1,4 @@ +type: interactive +time: 100ms +memory: 64m +interactor: interactor.cc diff --git a/Hydro/system_test/5/data/interactor.cc b/Hydro/system_test/5/data/interactor.cc new file mode 100644 index 00000000..34c41e0a --- /dev/null +++ b/Hydro/system_test/5/data/interactor.cc @@ -0,0 +1,22 @@ +#include + +#include "testlib.h" + +using namespace std; + +int main(int argc, char* argv[]) { + setName("Interactor A+B"); + registerInteraction(argc, argv); + + // reads number of queries from test (input) file + int a = inf.readInt(); + int b = inf.readInt(); + // writes query to the solution, endl makes flush + cout << a << " " << b << endl; + int ans; + cin >> ans; + if (a + b == ans) + quitf(_ok, "!"); + else + quitf(_wa, "?"); +} diff --git a/Hydro/system_test/6/data/aplusb1.in b/Hydro/system_test/6/data/aplusb1.in new file mode 100644 index 00000000..7aa36a18 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d16d3fc9baf02b7e1f16368d22e0d2b71cc96ac27eb8aa6f752c70ad323a70 +size 5 diff --git a/Hydro/system_test/6/data/aplusb1.out b/Hydro/system_test/6/data/aplusb1.out new file mode 100644 index 00000000..2eb7b22f --- /dev/null +++ b/Hydro/system_test/6/data/aplusb1.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ba1e99dc06b19351323aae0d7370243d586475a634b7f6ff7927fbc72cfaed +size 3 diff --git a/Hydro/system_test/6/data/aplusb10.in b/Hydro/system_test/6/data/aplusb10.in new file mode 100644 index 00000000..504f656f --- /dev/null +++ b/Hydro/system_test/6/data/aplusb10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430e10ff22fee9a0c0d39afb1e2f38721b7296b729f93a3a280b0864819ee6b7 +size 14 diff --git a/Hydro/system_test/6/data/aplusb10.out b/Hydro/system_test/6/data/aplusb10.out new file mode 100644 index 00000000..6b9d2a05 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e549aab080b020db99719011c2d0036264f46c84c360544bc78017b8a71108f +size 8 diff --git a/Hydro/system_test/6/data/aplusb11.in b/Hydro/system_test/6/data/aplusb11.in new file mode 100644 index 00000000..9885f393 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b23303e750da72347d505c6a448929b27fe3bf99684622b65680ad77edf7d944 +size 15 diff --git a/Hydro/system_test/6/data/aplusb11.out b/Hydro/system_test/6/data/aplusb11.out new file mode 100644 index 00000000..fab1d7bd --- /dev/null +++ b/Hydro/system_test/6/data/aplusb11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19260b57c6f201651e8b8303942b15dbea6caf898578eff72ade927f89e0664 +size 8 diff --git a/Hydro/system_test/6/data/aplusb12.in b/Hydro/system_test/6/data/aplusb12.in new file mode 100644 index 00000000..49387dd9 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10abae51258e2fa353b0f92a3f28efcc491c346d5cbf7d71c909efb0fa043721 +size 15 diff --git a/Hydro/system_test/6/data/aplusb12.out b/Hydro/system_test/6/data/aplusb12.out new file mode 100644 index 00000000..ab5c0098 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e12d66b5c1dae3dbd9744426bf7afe85b9135cdc30411aaee737d0039e5a17 +size 9 diff --git a/Hydro/system_test/6/data/aplusb13.in b/Hydro/system_test/6/data/aplusb13.in new file mode 100644 index 00000000..7340b192 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930ba44cf9f8fd454cfd84e973e5401b0acd79d9df15546c7610e82b257ae4f4 +size 14 diff --git a/Hydro/system_test/6/data/aplusb13.out b/Hydro/system_test/6/data/aplusb13.out new file mode 100644 index 00000000..8b3272ef --- /dev/null +++ b/Hydro/system_test/6/data/aplusb13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ca6d30ae09ed88678b769eacd4706106f256eb7b52019efe2466266e2c2443 +size 8 diff --git a/Hydro/system_test/6/data/aplusb14.in b/Hydro/system_test/6/data/aplusb14.in new file mode 100644 index 00000000..76ad32a5 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898f30fb33d2136f1ec6a97e282b2ce420a70aaf4eb92897699d73c856c2bddc +size 12 diff --git a/Hydro/system_test/6/data/aplusb14.out b/Hydro/system_test/6/data/aplusb14.out new file mode 100644 index 00000000..0c8c03da --- /dev/null +++ b/Hydro/system_test/6/data/aplusb14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e0e5a9c438fb68b9da352b88db1b28ec8870a807dcc240d2a402dfdafa8a62 +size 8 diff --git a/Hydro/system_test/6/data/aplusb15.in b/Hydro/system_test/6/data/aplusb15.in new file mode 100644 index 00000000..4ddfeec9 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3714c791746c25081901636f7807c43a9cbc05aa0067fb1a04b529615da2e99 +size 15 diff --git a/Hydro/system_test/6/data/aplusb15.out b/Hydro/system_test/6/data/aplusb15.out new file mode 100644 index 00000000..33f95005 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd3d8c2d3313dcb38bda917f91c54b9eb6aea2f2148697f1893cd5ac4f78823 +size 9 diff --git a/Hydro/system_test/6/data/aplusb16.in b/Hydro/system_test/6/data/aplusb16.in new file mode 100644 index 00000000..61d08c69 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb4a60f99dad0317365e4449a8409762d917c29a103efa9e2a36207c5e71a32 +size 15 diff --git a/Hydro/system_test/6/data/aplusb16.out b/Hydro/system_test/6/data/aplusb16.out new file mode 100644 index 00000000..0e7b448d --- /dev/null +++ b/Hydro/system_test/6/data/aplusb16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad658d4551f2d8271b1c003fec71361dac9c6c83a1c97758ec564c7db571521 +size 8 diff --git a/Hydro/system_test/6/data/aplusb17.in b/Hydro/system_test/6/data/aplusb17.in new file mode 100644 index 00000000..47ae8356 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a95eb4ed5de09b74d8777b51d373b44204288dc80d8293cd2bcb968c0ba7f8 +size 15 diff --git a/Hydro/system_test/6/data/aplusb17.out b/Hydro/system_test/6/data/aplusb17.out new file mode 100644 index 00000000..b67be9b7 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67ec184d361a9e0f72eb1c142bd15d3861219843f1b75909fba9f8783092467 +size 8 diff --git a/Hydro/system_test/6/data/aplusb18.in b/Hydro/system_test/6/data/aplusb18.in new file mode 100644 index 00000000..ea53fabd --- /dev/null +++ b/Hydro/system_test/6/data/aplusb18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683db996260103bb8ec30100d44a6ddf6e174b374941952a3ba81628c1833549 +size 14 diff --git a/Hydro/system_test/6/data/aplusb18.out b/Hydro/system_test/6/data/aplusb18.out new file mode 100644 index 00000000..51b88c46 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cee74d33e3eea4afaa5af04014cd51b54cc4fde2f82a8727b9d86a535a43f2a +size 8 diff --git a/Hydro/system_test/6/data/aplusb19.in b/Hydro/system_test/6/data/aplusb19.in new file mode 100644 index 00000000..d2627fa6 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2374987e4f7d20728b1c7724dcb9ff132f36d08a25e6be583e458ba792619fb7 +size 14 diff --git a/Hydro/system_test/6/data/aplusb19.out b/Hydro/system_test/6/data/aplusb19.out new file mode 100644 index 00000000..70c87c68 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c69f8ea301e0ddea38221f5291671368a179212eebb2635c4d9f7f867e0d1fd +size 8 diff --git a/Hydro/system_test/6/data/aplusb2.in b/Hydro/system_test/6/data/aplusb2.in new file mode 100644 index 00000000..08229055 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e037887a2d18834ba35a425affe5c29734457e3a0a1d7887e518cfd765ba19b3 +size 15 diff --git a/Hydro/system_test/6/data/aplusb2.out b/Hydro/system_test/6/data/aplusb2.out new file mode 100644 index 00000000..5b4990d5 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb2.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6737a57c2522317047c2f42162bcb4229631e5fe4306715f11b589f966f914 +size 8 diff --git a/Hydro/system_test/6/data/aplusb20.in b/Hydro/system_test/6/data/aplusb20.in new file mode 100644 index 00000000..b5f44eab --- /dev/null +++ b/Hydro/system_test/6/data/aplusb20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91ed4d0b1bc2c557cc4b8b893d140eeca08830cccd9431610f9f0318819fe94 +size 15 diff --git a/Hydro/system_test/6/data/aplusb20.out b/Hydro/system_test/6/data/aplusb20.out new file mode 100644 index 00000000..4dfed5f1 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb20.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a641a5237ae2eb657ef75df8c61ee308e863dd33daa37b36898c1287723ad50c +size 9 diff --git a/Hydro/system_test/6/data/aplusb3.in b/Hydro/system_test/6/data/aplusb3.in new file mode 100644 index 00000000..3fc308ae --- /dev/null +++ b/Hydro/system_test/6/data/aplusb3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c01834856fd18236094b5c92c4d6eff3eb755044c8b99ae67b0cbeb5adddb1 +size 15 diff --git a/Hydro/system_test/6/data/aplusb3.out b/Hydro/system_test/6/data/aplusb3.out new file mode 100644 index 00000000..fb827c10 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb3.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4849ac787c9fff0cd709eb9af649d3c8651c5d3c209df60ec8d1b78acc8add87 +size 9 diff --git a/Hydro/system_test/6/data/aplusb4.in b/Hydro/system_test/6/data/aplusb4.in new file mode 100644 index 00000000..81e510b0 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65124f4a12cb6596257ee4ce4cf49f6c44e285b363f88953b0fe01aae9997d2 +size 15 diff --git a/Hydro/system_test/6/data/aplusb4.out b/Hydro/system_test/6/data/aplusb4.out new file mode 100644 index 00000000..a4d91de5 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb4.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb00ad13b6c2b306cc9ab00853b6ced34494d0ff02c03ef6132293dd5e30bb62 +size 9 diff --git a/Hydro/system_test/6/data/aplusb5.in b/Hydro/system_test/6/data/aplusb5.in new file mode 100644 index 00000000..515d4f8c --- /dev/null +++ b/Hydro/system_test/6/data/aplusb5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aee7b0f8c07e0233c57f23cd9ca310d663fe24934904dfb38ac8cfd40a6babe +size 15 diff --git a/Hydro/system_test/6/data/aplusb5.out b/Hydro/system_test/6/data/aplusb5.out new file mode 100644 index 00000000..05e62f1e --- /dev/null +++ b/Hydro/system_test/6/data/aplusb5.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:508de3fbf1a61826380b34b21603896726b498e14e5f5810b3bbc52d7f93445d +size 9 diff --git a/Hydro/system_test/6/data/aplusb6.in b/Hydro/system_test/6/data/aplusb6.in new file mode 100644 index 00000000..1ce98ced --- /dev/null +++ b/Hydro/system_test/6/data/aplusb6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ed6f26ec084dffdc511e2dbd08c5e3935b4070084a4e1cc3967d9e78f06c5d +size 15 diff --git a/Hydro/system_test/6/data/aplusb6.out b/Hydro/system_test/6/data/aplusb6.out new file mode 100644 index 00000000..fcf72e57 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb6.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4f3a393ec5c102573094a0610237846411b3f1183fda1b5b1d135214107f17 +size 9 diff --git a/Hydro/system_test/6/data/aplusb7.in b/Hydro/system_test/6/data/aplusb7.in new file mode 100644 index 00000000..95dbddda --- /dev/null +++ b/Hydro/system_test/6/data/aplusb7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b8ec55f151a3e9dff1c3d36794e5bedded2eb3cd35f0ff5ccb7e34e68cd0be +size 15 diff --git a/Hydro/system_test/6/data/aplusb7.out b/Hydro/system_test/6/data/aplusb7.out new file mode 100644 index 00000000..71776431 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb7.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119847d6af2c85d5f2bd922fddbfab1f655cf8dea41000557ea9bef962a84d29 +size 8 diff --git a/Hydro/system_test/6/data/aplusb8.in b/Hydro/system_test/6/data/aplusb8.in new file mode 100644 index 00000000..a8a0ab3b --- /dev/null +++ b/Hydro/system_test/6/data/aplusb8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a72cfbebc86dd081283739b91f93c9fd3e874ace9c57aeb1e8b7331ca3f5f26 +size 15 diff --git a/Hydro/system_test/6/data/aplusb8.out b/Hydro/system_test/6/data/aplusb8.out new file mode 100644 index 00000000..aff27dab --- /dev/null +++ b/Hydro/system_test/6/data/aplusb8.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d6a0fff9e9c9afcc783eb8f19cb921e6f21a6334e2547ac7f750eb0412e22 +size 8 diff --git a/Hydro/system_test/6/data/aplusb9.in b/Hydro/system_test/6/data/aplusb9.in new file mode 100644 index 00000000..8692e318 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21815454de9db66f2128d4178bffe8cfe619bdde986146e2774141250a91204d +size 15 diff --git a/Hydro/system_test/6/data/aplusb9.out b/Hydro/system_test/6/data/aplusb9.out new file mode 100644 index 00000000..3590d648 --- /dev/null +++ b/Hydro/system_test/6/data/aplusb9.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e48ca1871147bc9ba169163c8eb02af5713e5df98ad5b0b475c92f0f84e096 +size 9 diff --git a/Hydro/system_test/6/data/config.yaml b/Hydro/system_test/6/data/config.yaml new file mode 100644 index 00000000..c926f6b4 --- /dev/null +++ b/Hydro/system_test/6/data/config.yaml @@ -0,0 +1,3 @@ +time: 100ms +memory: 64m +filename: a+b \ No newline at end of file diff --git a/Hydro/system_test/7/data/config.yaml b/Hydro/system_test/7/data/config.yaml new file mode 100644 index 00000000..5e51a18b --- /dev/null +++ b/Hydro/system_test/7/data/config.yaml @@ -0,0 +1,73 @@ +type: default + +time: 100ms +memory: 8m + +subtasks: + - score: 20 + id: 0 + cases: + - input: data1-1.in + output: data1-1.ans + - input: data1-2.in + output: data1-2.ans + - input: data1-3.in + output: data1-3.ans + - input: data1-4.in + output: data1-4.ans + - input: data1-5.in + output: data1-5.ans + - score: 20 + id: 1 + cases: + - input: data2-1.in + output: data2-1.ans + - input: data2-2.in + output: data2-2.ans + - input: data2-3.in + output: data2-3.ans + - input: data2-4.in + output: data2-4.ans + - input: data2-5.in + output: data2-5.ans + - score: 20 + id: 2 + cases: + - input: data3-1.in + output: data3-1.ans + - input: data3-2.in + output: data3-2.ans + - input: data3-3.in + output: data3-3.ans + - input: data3-4.in + output: data3-4.ans + - input: data3-5.in + output: data3-5.ans + - score: 20 + id: 3 + if: [2] + cases: + - input: data4-1.in + output: data4-1.ans + - input: data4-2.in + output: data4-2.ans + - input: data4-3.in + output: data4-3.ans + - input: data4-4.in + output: data4-4.ans + - input: data4-5.in + output: data4-5.ans + - score: 20 + id: 4 + if: [1, 3] + cases: + - input: data5-1.in + output: data5-1.ans + - input: data5-2.in + output: data5-2.ans + - input: data5-3.in + output: data5-3.ans + - input: data5-4.in + output: data5-4.ans + - input: data5-5.in + output: data5-5.ans diff --git a/Hydro/system_test/7/data/data1-1.ans b/Hydro/system_test/7/data/data1-1.ans new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-1.in b/Hydro/system_test/7/data/data1-1.in new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-2.ans b/Hydro/system_test/7/data/data1-2.ans new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-2.in b/Hydro/system_test/7/data/data1-2.in new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-3.ans b/Hydro/system_test/7/data/data1-3.ans new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-3.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-3.in b/Hydro/system_test/7/data/data1-3.in new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-4.ans b/Hydro/system_test/7/data/data1-4.ans new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-4.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-4.in b/Hydro/system_test/7/data/data1-4.in new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-5.ans b/Hydro/system_test/7/data/data1-5.ans new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-5.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data1-5.in b/Hydro/system_test/7/data/data1-5.in new file mode 100644 index 00000000..55180c09 --- /dev/null +++ b/Hydro/system_test/7/data/data1-5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b +size 1 diff --git a/Hydro/system_test/7/data/data2-1.ans b/Hydro/system_test/7/data/data2-1.ans new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-1.in b/Hydro/system_test/7/data/data2-1.in new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-2.ans b/Hydro/system_test/7/data/data2-2.ans new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-2.in b/Hydro/system_test/7/data/data2-2.in new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-3.ans b/Hydro/system_test/7/data/data2-3.ans new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-3.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-3.in b/Hydro/system_test/7/data/data2-3.in new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-4.ans b/Hydro/system_test/7/data/data2-4.ans new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-4.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-4.in b/Hydro/system_test/7/data/data2-4.in new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-5.ans b/Hydro/system_test/7/data/data2-5.ans new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-5.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data2-5.in b/Hydro/system_test/7/data/data2-5.in new file mode 100644 index 00000000..252faa6b --- /dev/null +++ b/Hydro/system_test/7/data/data2-5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35 +size 1 diff --git a/Hydro/system_test/7/data/data3-1.ans b/Hydro/system_test/7/data/data3-1.ans new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-1.in b/Hydro/system_test/7/data/data3-1.in new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-2.ans b/Hydro/system_test/7/data/data3-2.ans new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-2.in b/Hydro/system_test/7/data/data3-2.in new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-3.ans b/Hydro/system_test/7/data/data3-3.ans new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-3.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-3.in b/Hydro/system_test/7/data/data3-3.in new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-4.ans b/Hydro/system_test/7/data/data3-4.ans new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-4.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-4.in b/Hydro/system_test/7/data/data3-4.in new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-5.ans b/Hydro/system_test/7/data/data3-5.ans new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-5.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data3-5.in b/Hydro/system_test/7/data/data3-5.in new file mode 100644 index 00000000..9153f94a --- /dev/null +++ b/Hydro/system_test/7/data/data3-5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce +size 1 diff --git a/Hydro/system_test/7/data/data4-1.ans b/Hydro/system_test/7/data/data4-1.ans new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-1.in b/Hydro/system_test/7/data/data4-1.in new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-2.ans b/Hydro/system_test/7/data/data4-2.ans new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-2.in b/Hydro/system_test/7/data/data4-2.in new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-3.ans b/Hydro/system_test/7/data/data4-3.ans new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-3.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-3.in b/Hydro/system_test/7/data/data4-3.in new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-4.ans b/Hydro/system_test/7/data/data4-4.ans new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-4.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-4.in b/Hydro/system_test/7/data/data4-4.in new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-5.ans b/Hydro/system_test/7/data/data4-5.ans new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-5.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data4-5.in b/Hydro/system_test/7/data/data4-5.in new file mode 100644 index 00000000..73fdfd27 --- /dev/null +++ b/Hydro/system_test/7/data/data4-5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a +size 1 diff --git a/Hydro/system_test/7/data/data5-1.ans b/Hydro/system_test/7/data/data5-1.ans new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-1.in b/Hydro/system_test/7/data/data5-1.in new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-2.ans b/Hydro/system_test/7/data/data5-2.ans new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-2.in b/Hydro/system_test/7/data/data5-2.in new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-3.ans b/Hydro/system_test/7/data/data5-3.ans new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-3.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-3.in b/Hydro/system_test/7/data/data5-3.in new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-4.ans b/Hydro/system_test/7/data/data5-4.ans new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-4.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-4.in b/Hydro/system_test/7/data/data5-4.in new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-5.ans b/Hydro/system_test/7/data/data5-5.ans new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-5.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1 diff --git a/Hydro/system_test/7/data/data5-5.in b/Hydro/system_test/7/data/data5-5.in new file mode 100644 index 00000000..0d5c17b2 --- /dev/null +++ b/Hydro/system_test/7/data/data5-5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d +size 1