#include // #include using namespace std; using std::cerr, std::cin, std::cout; #define vec vector #if __has_include() #include using mint = atcoder::modint998244353; std::istream &operator>>(std::istream &is, mint &a) { long long t; is >> t; a = t; return is; } std::ostream &operator<<(std::ostream &os, mint a) { return os << a.val(); } // vec operator*(const vec &a, const vec &b) { return a.empty() || b.empty() ? vec() : atcoder::convolution(a, b); } // vec &operator*=(vec &a, const vec &b) { return a = a * b; } #endif typedef long double ld; #if LONG_MAX == 2147483647L #undef long #define long long long #endif #define uint unsigned int #define ulong unsigned long #define overload3(a, b, c, name, ...) name #define rep3(i, a, b) for (int i = (a); i < (b); i++) #define rep2(i, n) rep3(i, 0, n) #define rep1(n) rep2(__i__, n) #define rep(...) overload3(__VA_ARGS__, rep3, rep2, rep1)(__VA_ARGS__) #define per3(i, a, b) for (int i = (b) - 1; i >= (a); i--) #define per2(i, n) per3(i, 0, n) #define per1(n) per2(__i__, n) #define per(...) overload3(__VA_ARGS__, per3, per2, per1)(__VA_ARGS__) #define all(a) a.begin(), a.end() #define UNIQUE(a) sort(all(a)), a.erase(unique(all(a)), a.end()), a.shrink_to_fit() #define sz(a) static_cast(a.size()) #ifndef DEBUG #define cerr \ if (false) cerr // #undef assert // #define assert(...) void(0) #undef endl #define endl '\n' #endif ostream &operator<<(ostream &os, __int128_t value) { ostream::sentry s(os); if (s) { __uint128_t tmp = value < 0 ? -value : value; char buffer[128]; char *d = std::end(buffer); do { --d; *d = "0123456789"[tmp % 10]; tmp /= 10; } while (tmp != 0); if (value < 0) --d, *d = '-'; const int len = std::end(buffer) - d; if (os.rdbuf()->sputn(d, len) != len) os.setstate(std::ios_base::badbit); } return os; } template ostream &operator<<(ostream &os, pair a) { return os << a.first << ' ' << a.second; }; template ostream &operator<<(ostream &os, vector a) { const int n = a.size(); rep(i, n) { os << a[i]; if (i + 1 != n) os << " "; } return os; } template istream &operator>>(istream &is, pair &a) { return is >> a.first >> a.second; } template ostream &operator<<(ostream &os, array a) { rep(i, n) { os << a[i]; if (i + 1 != n) os << " "; } return os; } template istream &operator>>(istream &is, vector &a) { for (T &i : a) is >> i; return is; } template bool chmin(T &x, S y) { if ((T)y < x) { x = (T)y; return true; } return false; } template bool chmax(T &x, S y) { if (x < (T)y) { x = (T)y; return true; } return false; } template void operator++(vector &a) { for (T &i : a) ++i; } template void operator--(vector &a) { for (T &i : a) --i; } template void operator++(vector &a, int) { for (T &i : a) i++; } template void operator--(vector &a, int) { for (T &i : a) i--; } void init(), solve(); int main() { // srand((unsigned)time(NULL)); cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); cerr << fixed << setprecision(20); init(); int t = 1; // cin >> t; while (t--) solve(); } void init() {} void solve() { int s, t, n; cin >> s >> t >> n; array p, a, b; rep(i, 3) cin >> p[i] >> a[i] >> b[i]; vec hyaku(n + 1, 1); rep(i, n) hyaku[i + 1] = 100 * hyaku[i]; vec> dp(n + 1, vec(t)); rep(r, 1, n + 1) rep(w, 1, t) rep(x, 1, w + 1) { long res = 0; rep(i, 3) { const long ww = w - x + a[i] * x / b[i]; res += p[i] * (ww >= t ? hyaku[r - 1] : dp[r - 1][ww]); } chmax(dp[r][w], res); } const long q = dp[n][s]; cout << q / hyaku[n - 1] << endl; vec ans; rep(x, 1, s + 1) { long res = 0; rep(i, 3) { const long ww = s - x + a[i] * x / b[i]; res += p[i] * (ww >= t ? hyaku[n - 1] : dp[n - 1][ww]); } if (res == q) ans.push_back(x); } cout << sz(ans) << endl << ans << endl; }