import std.stdio, std.string, std.conv; import std.algorithm, std.math; import std.range; import std.container.rbtree, std.container.dlist; import std.container.binaryheap, std.container.array; import std.typecons; alias mstring = char[]; const long INF = 1L << 60L; const long mod = 1_000_000_000 + 7; void chmin (T)(ref T x, T y) { x = min(x, y); } void chmax (T)(ref T x, T y) { x = max(x, y); } // 単一の数値を取得 // readln.chomp.to!int; // or // int a; // readf("%s\n", a); // 複数の数値を取得(可変数個の場合推奨) // readln.chomp.split.map!(to!long).array // 複数の数値を取得(固定数個の場合、推奨) // int a, b; // readf("%s %s\n", &a, &b); // インデントを一個ずらして複数の数値を取得(累積和とかで1-indexedの方が良い時がある) // long[] vs = readln.chomp.split.map!(to!long).array; // vs = [0L] ~ vs; // 小数点は以下で指定 // double ret = 10.0; // writefln("%.12f", ret); // 配列の最後の要素は arr[$-1] でアクセスできる void main () { int N = readln.chomp.to!int; auto ds = readln.chomp.split.map!(to!long).array; ds = [0L] ~ ds; auto dp = new long[][](1 << N, N + 2); dp[0][1] = 100L; foreach (s; 0 .. (1 << N)) foreach (k; 1 .. N + 1) { if (dp[s][k] <= 0L) continue; foreach (i; 1 .. N + 1) { long d = ds[i]; if (s & (1 << (i - 1))) continue; if (d < 0 && dp[s][k] + d <= 0) continue; if (d > 0) chmax (dp[s | (1 << (i - 1))][k], min(k * 100L, dp[s][k] + d)); else chmax(dp[s | (1 << (i - 1))][k + 1], dp[s][k] + d); } } long ret = 0L; foreach (k; 1 .. N + 2) chmax (ret, dp[(1 << N) - 1][k]); writeln(ret); }