只能有1个!


44

给定正整数n,您的任务是生成等于number的表达式n

要注意的是:只允许1在输出中输入数字。

您可以使用的运营商是:

  • +-*/
    • /是浮点除法(so 5/2 = 2.5)。
  • sqrt(作为s
  • ceilfloor(分别为cf
  • ! (阶乘)
    • 在这种情况下,阶乘仅适用于正整数。

您也可以将堆叠1在一起,因此11在输出中可以接受类似的内容。但是,它们的数量与数量中的相同1(因此11算作2 1)。

您还必须在输出中包括方括号,以便通过操作顺序执行输出时,输出中的表达式将产生输入。但是,它们不算作操作。

例子:

  • 输入= 24,一个可能的输出= (1+1+1+1)!
  • 输入= 11,一个可能的输出= 11
  • 输入= 5,一个可能的输出= c(s((1+1+1+1)!))
    • 的平方根的上限245

规则:

  • 您可以确保输入是从1到的正整数2^31-1
  • 2^31-1即使未经测试,您的程序也必须能处理最大为的正整数。
  • 您的程序必须在1小时内完成处理集中所有数字的所有输出。
  • 程序每次运行的结果都必须完全相同-而且,没有种子。
  • 您只能对表达式进行硬编码,最多10个数值。
  • 不允许在输出中的任何地方使用虚数(所以没有s(some negative number))。
  • 也不允许您使用大于2^31-1或小于-2^31+1输出中任何地方的数字,即使当它们是sqrted或/ed(所以no (((1+1+1)!)!)!((1+1+1+1)!)!)时也是如此。

一组数字:

945536, 16878234, 32608778, 42017515, 48950830, 51483452, 52970263, 54278649, 63636656, 78817406, 89918907, 90757642, 95364861, 102706605, 113965374, 122448605, 126594161, 148064959, 150735075, 154382918, 172057472, 192280850, 194713795, 207721209, 220946392, 225230299, 227043979, 241011012, 248906099, 249796314, 250546528, 258452706, 276862988, 277140688, 280158490, 286074562, 308946627, 310972897, 322612091, 324445400, 336060042, 346729632, 349428326, 352769482, 363039453, 363851029, 392168304, 401975104, 407890409, 407971913, 425780757, 459441559, 465592122, 475898732, 482826596, 484263150, 506235403, 548951531, 554295842, 580536366, 587051904, 588265985, 588298051, 590968352, 601194306, 607771869, 618578932, 626776380, 667919873, 681786366, 689854904, 692055400, 697665495, 711608194, 734027104, 750869335, 757710567, 759967747, 777616154, 830071127, 833809927, 835873060, 836438554, 836945593, 863728236, 864158514, 871273503, 881615667, 891619600, 897181691, 918159061, 920521050, 924502226, 929983535, 943162304, 950210939, 950214176, 962610357, 974842859, 988572832

(这些是从1到10亿的100个随机数。)

评分系统:

您的分数确定如下:

  • 您的程序将根据集中的随机数进行测试。
    • 您必须提供使用集合中的随机数生成的输出(在您的答案内部或作为pastebin链接)。
  • 您将获得两个“分数”:一个主要分数和一个次要分数。
    • 您的主要分数是(no. of 1's in output)*(no. of operators in output)。如果您的主要分数是最低的,您将获胜。
    • 次要分数是您的上传时间,格林尼治标准时间和24小时制。因此,如果您在9月12日格林威治标准时间00:00上传程序,那么您的分数将是12/09/2016, 00:00DD/MM/YYYY HH:MM用于格式化)。

像这样显示您的分数:

(language name)
Primary Score = (primary score)
Secondary Score = (secondary score)
(no. of 1's) `1`'s, (no. of operators) operators

分别用您的语言名称,主要成绩和次要成绩替换括号中的所有内容。

目前获奖者:

目前的获胜者是@ChrisJefferson,主要得分为3,810,660


6
建议不是规则,但是就是为什么打高尔夫球作为一种决胜局是有问题的一个很好的理由。抱歉,我没有在沙盒中发现它
trichoplax

2
相关的SE问题
xnor

3
我同意trichoplax的观点,决胜局应该是尽快达到最短成绩的答案。
ETHproductions 2016年

1
@JonathanAllan括号不是运算符,而是必需的。
clismique 2016年

1
您可以浏览答案的历史记录,看看哪个答案最先达到了最终分数。
ETHproductions 2016年

Answers:


25

C ++ 11

进一步的小更新:减少添加,并尝试使用A * B + C形式的所有数字。我相信,在限定时间内,这是相当接近最优,假设你只使用+*!。我把其他操作员留给了比我更多时间的人!

小更新:尝试使用阶乘和数字,例如11 .... 111。还修复了我不计入!成本核算的错误

新结果:

基本分数= 3,810,660

中学分数= 12/09/2016 20:00

2532 1s,1505个运算符。

各种技巧组合在一起。我的程序首先以111..111的形式为所有阶乘和数字设置最短的程序开始(我不认为这符合严格的规定,因为这是制作这些数字的最短方法。我可以重新排列我的代码,因此我可以根据需要在动态编程中检查这些模式)。然后执行部分动态编程方法,尝试各种形式:

  • A + B
  • A * B + C
  • 一种!+ B
  • 11 .... 11 + B

不幸的是,我无法尝试分解数字的所有方式,因此我选择阶乘和11 ... 11仅尝试最接近的数字,让A + B尝试接近A / 2的事物,并选择A * B + C仅尝试相当小的As。

通过有时会略微超调(尤其是在A * B-C中),将其扩展为尝试一些“-”会很容易,但是我很喜欢只尝试增长。

另外,优化条件很难优化(我不喜欢!),因为原则上不能单独为每个数字提供“最佳”值,因此必须全局考虑一组答案(我不打算这样做)。

警告:该程序需要一台64位计算机和大约10GB的内存(因为我没有效率地为所有部分计算的结果制作一个巨大的数组)。

程序:

#include <algorithm>
#include <vector>
#include <string>
#include <assert.h>
#include <iostream>
#include <cmath>

std::vector<int> numints;
std::vector<int> numops;
std::vector<std::string> strings;


void fill_all_ones(long maxval)
{
    int val = 1;
    int len = 1;
    std::string name = "1";
    while(val < maxval) {
        val = val * 10 + 1;
        len++;
        name = name + "1";
        numints[val] = len;
        strings[val] = name;
    }
}


void get_best_for_next_full(long i);
// let's just assume this is the best way to make factorials
void fill_all_factorials(long maxval)
{
    // skip 1 and 2
    long result = 6;
    long val = 3;
    while(result < maxval) {
        get_best_for_next_full(val);
        strings[result] = "(" + strings[val] + ")!";
        numints[result] = numints[val];
        numops[result] = numops[val] + 1;
        val++;
        result = result * val;
    }
}

long get_nearest_all_ones(long i)
{
    int val = 11;
    int prevval = 1;
    while(val < i) {
        prevval = val;
        val = val * 10 + 1;
    }
    return prevval;
}

long get_nearest_factorial(long i)
{
    int val = 6;
    int prevval = 2;
    int step = 3;
    while(val < i) {
        prevval = val;
        step++;
        val = val * step;
    }
    return prevval;
}

int getlen(long i);

void get_best_for_next_full(long i)
{
    if(numints[i] > 0)
        return;

    int best = INT_MAX; // we'll do better than this
    std::string beststring = "invalid2";
    int ones = -1;
    int ops = -1;
    for(long loop = 1; loop <= i/2; loop++)
    {
        int new_val = getlen(loop) + getlen(i - loop);
        if(new_val < best) {
            best = new_val;
            ones = numints[loop] + numints[i - loop];
            beststring = "(" + strings[loop] + "+" + strings[i - loop] + ")";
            ops = numops[loop] + numops[i - loop] + 1;
        }
    }

    for(long loop = 2; loop * loop <= i; loop++)
    {
        long divisor = i / loop;
        long rem = i - loop*divisor;
        assert(rem >= 0);
        int new_val;
        if(rem == 0)
        {
            new_val = getlen(divisor) + getlen(loop);
        }
        else
        {
            new_val = getlen(divisor) + getlen(rem) + getlen(loop);
        }

        if(new_val < best) {
            best = new_val;
            if(rem == 0) {
                ones = numints[divisor] + numints[loop];
                beststring = "(" + strings[divisor] + "*" + strings[loop] + ")";
                ops = numops[divisor] + numops[loop] + 1;
            } else {
                ones = numints[divisor] + numints[loop] + numints[rem];
                beststring = "(" + strings[divisor] + "*" + strings[loop] + "+" + strings[rem] + ")";
                ops = numops[divisor] + numops[loop] + numops[rem] + 2;
            }
        }
    }

    numints[i] = ones;
    strings[i] = beststring;
    numops[i] = ops;
}


void check_divising(const long i, const long loop, long& best, long& ones, std::string& beststring, long& ops);
void check_adding(const long i, const long loop, long& best, long& ones, std::string& beststring, long& ops);

void get_best_for_next_partial(long i)
{
    if(numints[i] > 0)
        return;

    long best = INT_MAX; // we'll do better than this
    long ones = 1;
    std::string beststring = "invalid";
    long ops = 1;

    // Special: Try a nearby all ones
    {
        long loop = get_nearest_all_ones(i);
        check_adding(i, loop, best, ones, beststring, ops);
    }

    // Special: Try nearest factorial
    {
        long loop = get_nearest_factorial(i);
        check_adding(i, loop, best, ones, beststring, ops);
    }

    for(long loop = 2; loop * loop <= i; loop++)
    {
       check_divising(i, loop, best, ones, beststring, ops);
    }


    numints[i] = ones;
    strings[i] = beststring;
    numops[i] = ops;
}

void check_adding(const long i, const long loop, long& best, long& ones, std::string& beststring, long& ops)
{
    int new_val = getlen(loop) + getlen(i - loop);
    if(new_val < best) {
        best = new_val;
        ones = numints[loop] + numints[i - loop];
        beststring = "(" + strings[loop] + "+" + strings[i - loop] + ")";
            ops = numops[loop] + numops[i - loop] + 1;
    }
}

void check_divising(const long i, const long loop, long& best, long& ones, std::string& beststring, long& ops)
{ 
    long divisor = i / loop;
    long rem = i - loop*divisor;
    assert(rem >= 0);
    int new_val;
    if(rem == 0)
    {
        new_val = getlen(divisor) + getlen(loop);
    }
    else
    {
        new_val = getlen(divisor) + getlen(rem) + getlen(loop);
    }

    if(new_val < best) {
        best = new_val;
        if(rem == 0) {
            ones = numints[divisor] + numints[loop];
            beststring = "(" + strings[divisor] + "*" + strings[loop] + ")";
            ops = numops[divisor] + numops[loop] + 1;
        }
        else {
            ones = numints[divisor] + numints[loop] + numints[rem];
            beststring = "(" + strings[divisor] + "*" + strings[loop] + "+" + strings[rem] + ")";
            ops = numops[divisor] + numops[loop] + numops[rem] + 2;
        }
    }
}

long count = 0;
long countops = 0;

const int little_cutoff = 200000;

int getlen(long i)
{
    if(numints[i] == 0) {
        if(i < little_cutoff)
            get_best_for_next_full(i);
        else
            get_best_for_next_partial(i);
    }
    if(numints[i] == 0) {
        std::cout << i << " failure!" << numops[i] << ":" << strings[i] << std::endl;
        exit(1);
    }

    return numints[i] + numops[i];
}

const std::vector<long> vals = {945536, 16878234, 32608778, 42017515, 48950830, 51483452, 52970263, 54278649, 63636656, 78817406, 89918907, 90757642, 95364861, 102706605, 113965374, 122448605, 126594161, 148064959, 150735075, 154382918, 172057472, 192280850, 194713795, 207721209, 220946392, 225230299, 227043979, 241011012, 248906099, 249796314, 250546528, 258452706, 276862988, 277140688, 280158490, 286074562, 308946627, 310972897, 322612091, 324445400, 336060042, 346729632, 349428326, 352769482, 363039453, 363851029, 392168304, 401975104, 407890409, 407971913, 425780757, 459441559, 465592122, 475898732, 482826596, 484263150, 506235403, 548951531, 554295842, 580536366, 587051904, 588265985, 588298051, 590968352, 601194306, 607771869, 618578932, 626776380, 667919873, 681786366, 689854904, 692055400, 697665495, 711608194, 734027104, 750869335, 757710567, 759967747, 777616154, 830071127, 833809927, 835873060, 836438554, 836945593, 863728236, 864158514, 871273503, 881615667, 891619600, 897181691, 918159061, 920521050, 924502226, 929983535, 943162304, 950210939, 950214176, 962610357, 974842859, 988572832};

const long biggest = 988572832;



int main(void)
{
    numints.push_back(2);
    strings.push_back("(1-1)");
    numops.push_back(1);

    numints.push_back(1);
    strings.push_back("1");
    numops.push_back(0);

    numints.push_back(2);
    strings.push_back("(1+1)");
    numops.push_back(1);

    numints.resize(biggest + 1);
    strings.resize(biggest + 1);
    numops.resize(biggest + 1);

    fill_all_ones(biggest);
    fill_all_factorials(biggest);

    for(long i = 0; i < little_cutoff; ++i)
        get_best_for_next_full(i);




    for(long v : vals) {
        get_best_for_next_partial(v);
        std::cout << v << ":" << strings[v] << "\n";
        count += numints[v];
        countops += numops[v];

    }

    std::cout << count << ":" << countops << ":" << count * countops << "\n";

}

结果:

945536:((1111*(1+(11+11))+(1+1))*((1+11)*(1+(1+1))+1)+1)
16878234:(((1+(1+1111))*(1+(1+(1+111)))+(11+11))*((1+11)*11+1)+(1+1))
32608778:((((((1+(1+1)))!+(111+11111))*(11*11)+111)*(1+11)+1)*(1+1))
42017515:((11)!+((((1+111)*11)*11+1)*((1+11)*(1+11)+11)))
48950830:((((11+11)*(1+11))+(11111*(1+(1+1))))*((1+111)*(1+(1+11))+1)+1)
51483452:(((1+(1+1111))*(1+111)+1)*(11+(((1+11)*11+(1+1))*(1+(1+1))))+111)
52970263:((11+((1111*11+(1+(1+1)))*(1+(1+1))))*(111*(1+(1+11))+1)+11)
54278649:((11)!+(((1+(11+(11+(11+1111))))*111+1)*(1+(1+111))+1))
63636656:((((11+111)*(1+(1+1)))*(1+111)+11)*(1+(111+((((1+(1+1)))!)!*(1+1)))))
78817406:(((((111*(11+11)+1)*(1+1))*(1+111)+111)*(1+11)+1)*(1+11)+(1+1))
89918907:(((111+((1+(1+((1+(1+1)))!)))!)*(1+1))*(1+1111)+((11*11)*(1+(1+1))))
90757642:((1111+((11+11111)*(1+1)))*(111*(11+((1+(1+(1+1))))!)+1)+(1+111))
95364861:((11)!+(((((((11+11)*11)+11111)*111)*11+(1+1))*(1+1))*(1+1)+1))
102706605:(((11)!+(((111+((11*11)*11))*(1+(((1+(1+1)))!)!))*11))*(1+1)+1)
113965374:((((111*(1+(1+(1+11))))*1111+((1+(11+11))*11+1))*11+1)*((1+(1+1)))!)
122448605:(((((1+(1+1)))!)!+((111*11)*11))*((1+(((1+(1+1)))!)!)*(1+11)+1)+(1+1))
126594161:(((((11*11)+(((1+(1+1)))!)!)*(1+111))*(1+11)+1)*(1+111)+1)
148064959:((11)!+(((111*111+(1+11))*111+1)*((1+(1+11))*((1+(1+1)))!+1)+(1+(1+1))))
150735075:(((111*111+(1+1))*(1+1111)+(1+11))*11+(1+((1+(1+1)))!))
154382918:((1111*(1+11)+1)*(((1+(11+(111+111)))*(1+1))+11111)+111)
172057472:((((((1+11)*11)*11+1)*(1+(1+1)))+11111)*(11+11111)+((1+11)*11))
192280850:(((11111*(1+11)+11)*(1+(((1+(1+1)))!)!)+(11+111))*(1+1))
194713795:((11)!+((((111+11111)*(1+(1+(1+111)))+((1+(1+1)))!)*11)*11+1))
207721209:(((111*111)*(1+(11+11))+(1+1))*(1+(1+(11+(((1+(1+1)))!)!)))+(1+(1+(1+1))))
220946392:((11)!+((((1+(1+(1+1111)))*(11+111))*111+11)*(1+11)+(1+(1+(1+1)))))
225230299:((111111111+((111*111+(1+((1+(1+1)))!))*(11+111)+(11+11)))*(1+1)+1)
227043979:((((((11+11)*11)+11111)*(1+(1+1))+1)*1111+(1+(1+1)))*((1+(1+1)))!+1)
241011012:(((11)!+((11)!+((11)!+((11+1111)*((1+111)*((1+(1+1)))!+1)))))*(1+1))
248906099:(((11111+(((((1+(1+1)))!)!*111)*(1+1)))*(1+111)+111)*(1+(1+11)))
249796314:(((11)!+(((((1+(1+1)))!)!+((1+1111)*(1+11)))*(11+111)+111))*((1+(1+1)))!)
250546528:((11)!+(((111*111)*(1+(1+(1+11)))+11)*(111*11)+(1+(11+1111))))
258452706:(((11)!+(((((1+(1+1)))!)!*((1+(1+1)))!+1)*(11+(((1+(1+1)))!)!)))*((1+(1+1)))!)
276862988:(((11+(1111*(1+1)))*(((1+(1+1)))!+1111))*111+(((1+(1+1)))!+11))
277140688:(((111*111+(1+(1+(1+(1+11)))))*(1+1))*(11+(111+11111))+(1+111))
280158490:((11)!+(((1+(111+111111))*(((1+(1+1)))!)!+(1+(1+1)))*(1+(1+1))+1))
286074562:(((11)!+((((11+1111)*(11+11))*(1+1)+1)*(1+(11+1111))))*(1+(1+1))+1)
308946627:((11)!+((((1+1111)*(((1+(1+1)))!)!+((11+11)*(1+1)))*(1+111)+1)*(1+(1+1))))
310972897:((11111*(1+(1+1))+1)*(((1111+(111*11))*(1+1))*(1+1)+1)+11)
322612091:((((((1+11)*(1+11))*(1+11)+(1+1))*111+1)*(1+111))*(1+(1+(1+(1+11))))+11)
324445400:(((1111111+(1+(1+1)))*(1+1))*((1+11)*(1+11)+(1+1))+(1+111))
336060042:(((1+1111)*(1+(11+111))+(1+111))*(11+((111*11+1)*(1+1)))+(1+1))
346729632:(((1+(1+(11111+(111*111))))*((1+111)*11+1)+(1+(1+(1+11))))*(1+11))
349428326:(((((11+11)*11)*11+1)*(1+1111)+1)*(1+(((1+(1+1)))!+111)))
352769482:(((1+11111)*(111*(11+11))+((11+111)*((1+1)*(1+1)+1)))*(1+(1+11)))
363039453:(((((1+111)*(1+111)+1)*(1+1))*(1+(1+11))+11)*(1+(1+1111)))
363851029:((((111*11+1)*1111+11)*((1+11)*11+(1+1))+(1+11))*(1+1)+1)
392168304:(((((1+(1+1111))*(1+111))*11+1)*(1+(1+11))+11)*(11+11))
401975104:(((((1+11)*(1+11)+1)*111)*111+11)*((1+111)*(1+1)+1)+(1+(1+(1+1))))
407890409:(((1+11111)*11)*((1+1111)*(1+(1+1))+1)+((1+1111)*(1+1)+1))
407971913:((11)!+((11)!+(((1+(1+11111))*(1+1)+1)*(((11+111)*11)*11+1)+(1+1111))))
425780757:(((1111+((((1+11)*11)+11111)*(1+(1+1))))*11+1)*1111+((1+(1+1)))!)
459441559:(((11111+(((1+(1+111))*(1+1)+1)*111))*111+1)*(1+(1+(1+111)))+(1+(1+11)))
465592122:(((11)!+((((1111*(11*(1+(1+1))+1)+1)*(1+(11+11)))*(1+1)+1)*111))*(1+1))
475898732:(((11)!+(((((1+111)*11+(1+1))*(1+11))*(1+1)+1)*(1+(1+111))))*11+1)
482826596:(((1+(((111*11)*11)+(11111*(1+1))))*111+1)*(11+111)+((1+(1+1)))!)
484263150:(((111*111+(1+(1+1)))*111+11)*(1+(111+((11+11)*11))))
506235403:(((1+11))!+((((1+(1+1111))*(1+1111)+((11+111)*(1+1)))*11+1)*(1+1)+1))
548951531:((((111+111)*(1+1)+1)*111+11)*11111+((11+111)*(1+11)+1))
554295842:(((1+11))!+((((1+1111)*111+1)*((1+1)*(1+1)+1))*(11+111)+(1+111)))
580536366:(((1+(111+((111*111+11)*(1+11))))*(1+111)+1)*(11+((1+(1+(1+1))))!)+11)
587051904:(((((1+1111)*(1+11))*(1+(1+1))+1)*(111*11+1)+(111*((1+(1+1)))!))*(1+11))
588265985:(((1+11))!+((1+(111+(1111*(1+(1+11)))))*((1+111)*(11*((1+(1+1)))!+1)+(1+(1+1)))))
588298051:((((((11+111)*11)*11)+(11111*(1+(1+1))))*(1+1111)+1)*11)
590968352:(((((((1+(1+1)))!)!+11111)*111+(11+11))*((1+111)*(1+1)+1)+1)*(1+1))
601194306:((((1111*(1+(1+(1+(11+111))))+1)*111+(1+1))*(1+(1+1))+1)*(1+(1+11))+11)
607771869:(((1+11))!+(((11)!+(((1111*11+1)*(1+1))*(1+(11+111))+11))*(1+(1+1))))
618578932:(((((1111*111)*11+1)*(1+1)+1)*(1+1))*(1+(1+(1+111)))+(1+111))
626776380:((((1+(1+(1+1))))!+((((1+(1+1)))!)!+(1111*111)))*(1+(11+((1+((1+(1+1)))!))!)))
667919873:((((((1+(11+111))*11+1)*111+(1+(1+1)))*1111+1)*(1+1))*(1+1)+1)
681786366:(((1+11))!+((11)!+(((11)!+((11)!+((1+(1+11111))*((1+11)*(1+11))+111)))*(1+1))))
689854904:(((11+((11111+((1+1111)*11))*(1+1)))*((11+111)*11+1)+11)*11+(1+1))
692055400:(((1+11))!+(((((1+(1+111))*(1+(1+(1+11))))*11)*11+1)*(1+(1+1111))+1))
697665495:(((1+11))!+(((((((1+(1+1)))!)!*(1+(1+(1+111)))+1)*(1+11))*(1+1)+1)*111))
711608194:(((11)!+(((1+(1+(1+(1+1111))))*(11+((11+111)*(1+1)))+(1+1))*1111))*(1+1))
734027104:(((111*(11+((1+(1+(1+1))))!)+1)*(((1+(1+1)))!+11)+1)*11111+1111)
750869335:((11111111+((1+(((1+(1+1)))!)!)*((1+11)*11+1)+1))*(11*((1+(1+1)))!+1))
757710567:((((((11+111)*11)+111111)*(1+(1+1))+1)*(1+(11+1111))+(1+(1+1)))*(1+1)+1)
759967747:(((11)!+(((1+(1+(111+11111)))*(1+(1+111)))*(1+(11+11))+1))*11)
777616154:((11111*(111+(((111*11+1)*(1+1))*(1+1)))+(11+111))*(1+(1+(1+11))))
830071127:((((1+111)*111)*((1+(1+1)))!+1)*(((1+(1+1)))!+(11+11111))+(111*(1+1)+1))
833809927:((((11+1111)*(1+1)+1)*111+1)*(1+(1+(11+(1111*(1+(1+1))))))+111)
835873060:(((((11+(111+111))*111+1)*(1+(1+111))+1)*(1+(1+11))+1)*(11+11))
836438554:(((1+11))!+(((11111*(1+1)+1)*((11+(((1+(1+1)))!)!)*11+1)+1111)*(1+1)))
836945593:(((1111*1111+(1+111))*(1+(1+111))+(1+(1+1)))*((1+(1+1)))!+1)
863728236:(((1+(1111+((11+11111)*(1+1))))*(111*111+((1+(1+1)))!))*(1+(1+1)))
864158514:(((1+11))!+(((1111*(1+(1+(1+11)))+((1+(1+1)))!)*111+1)*(111*(1+1)+1)+11))
871273503:((((1+11111)*(11+11)+1)*((1+(1+11))*(1+1)+1)+1)*((1+11)*11)+111)
881615667:((11111+((111*111+11)*(1+1)))*((111*111)*(1+1)+1)+((11+1111)*11))
891619600:(((11)!+((11)!+((((1+(11+11))*(1+1))+111111)*11)))*11+(1+(1+1)))
897181691:((11+(11+(11+((1+(1+((1+(1+1)))!)))!)))*(11+(11111*(1+1)))+((111*11+1)*11))
918159061:(((11)!+(((11+11)*11+1)*(1+(1+11))))*(1+(11+11))+(1+(1+(1+1))))
920521050:(((11)!+((((1+(11+1111))*(1+(1+(1+1111))))*(1+111)+111)*(1+(1+1))))*(1+1))
924502226:((((1111*(1+11))*(1+1)+1)*((111*(1+11)+1)*(1+1)+1))*(1+(1+11))+11)
929983535:(((11)!+((((11+111)*111+1)*111)*((1+11)*(1+1)+1)+(1+1)))*(1+11)+11)
943162304:(((11)!+((((((1+((1+(1+1)))!))!+(111*111))*111+(1+1))*(1+111))*(1+1)))*(1+1))
950210939:(((11+(111+11111))*(1+(1+(1+(((1+(1+1)))!)!)))+(1+1))*(((1+(1+1)))!+111)+(1+1))
950214176:(((11)!+((((111*111)*(1+(1+11)))*11+1)*((1+(11+111))*(1+1)+1)))*(1+1))
962610357:((((1+11))!+((1+((((1+(1+1)))!)!+(111*(1+11))))*(11+1111)+(1+111)))*(1+1)+1)
974842859:((((((11*(1+((1+(1+1)))!))+1111)*11+1)*(1+111))*((1+(1+1)))!)*111+11)
988572832:(((111111111+((11111*(1+(1+1111))+11)*11+(1+(1+1))))*(1+1))*(1+1))

好像您没有计算225 !。我认为这是1632个运算符,而不是1407个。(尽管那仍然会带来不错的成绩。)
Arnauld

糟糕,我在阶乘函数的成本核算中错了“ 1”。令我惊讶的是,对我生成的表达式几乎没有影响的修复,我想因为阶乘通常如此之大,以至于如果它们多花一个,它们仍然是最佳选择。
克里斯·杰弗逊

long maxval 抱怨
斯坦·斯特鲁姆

7

哈斯克尔

主要成绩:27242281

中学分数:12/09/2016 09:01

11891 1's,2291个运营商

import Data.List


nums = iterate (\x -> x*10+1) 1

g n | n > a = show a ++ "+(" ++ g (n-a) ++ ")"
    | n < a = show a ++ "-(" ++ g (a-n) ++ ")"
    | otherwise = show a
 where a = minimumBy (\x y -> compare (abs$x-n) (abs$y-n))
         . take 2 . reverse
         $ takeWhile (<=n*10) nums

它基本上找到了仅使用+和-使其最短的方法。

输出:

945536: 1111111-(111111+(11111+(11111+(11111+(11111+(11111-(1111-(11+(11-(1+(1)))))))))))
16878234: 11111111+(1111111+(1111111+(1111111+(1111111+(1111111+(111111+(111111-(11111-(111+(111+(111+(111+(11+(1+(1)))))))))))))))
32608778: 11111111+(11111111+(11111111-(1111111-(111111+(111111+(111111+(11111+(11111+(11111+(11111+(11111-(1111+(1111+(111-(1)))))))))))))))
42017515: 11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(111111+(111111-(11111+(11111-(1111+(1111+(1111+(1111+(111+(111+(11+(11+(11+(11-(1+(1+(1))))))))))))))))))))))
48950830: 11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(111111-(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111+(111+(111+(11+(11+(11+(11+(11+(1+(1+(1+(1)))))))))))))))))))))))))))
51483452: 11111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(1111111-(111111+(111111+(111111+(11111+(11111+(11111+(1111+(1111+(1111+(1111+(1111+(111+(11-(1+(1)))))))))))))))))))))))
52970263: 11111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(111111+(111111+(111111+(11111+(11111+(11111-(1111+(1111+(1111+(111+(111+(11+(11+(11+(11-(1+(1+(1))))))))))))))))))))))))
54278649: 11111111+(11111111+(11111111+(11111111+(11111111-(1111111+(111111+(11111+(11111+(11111+(11111+(11111-(1111-(111+(111+(11+(11-(1+(1+(1+(1))))))))))))))))))))
63636656: 111111111-(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111-(111111+(111111+(111111-(11111+(11111+(11111-(1111+(1111+(1111-(11)))))))))))))))))
78817406: 111111111-(11111111+(11111111+(11111111-(1111111-(111111-(11111+(11111+(11111+(11111-(1111+(1111+(1111+(1111+(111+(111+(111+(11+(11+(11+(11-(1+(1+(1+(1+(1)))))))))))))))))))))))))
89918907: 111111111-(11111111+(11111111-(1111111-(111111-(11111+(11111+(11111-(1111+(1111+(1111-(11+(11-(1+(1+(1+(1))))))))))))))))
90757642: 111111111-(11111111+(11111111-(1111111+(1111111-(111111+(111111+(111111+(11111+(11111-(1111+(1111-(111+(11+(11+(1+(1+(1)))))))))))))))))
95364861: 111111111-(11111111+(1111111+(1111111+(1111111+(1111111+(111111+(111111-(11111+(11111+(11111-(1111+(1111-(111+(111+(111+(111-(11+(11+(11-(1+(1+(1+(1+(1))))))))))))))))))))))))
102706605: 111111111-(11111111-(1111111+(1111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111-(1111+(1111+(1111+(1111+(111-(11+(11+(11+(11+(11-(1+(1+(1+(1+(1))))))))))))))))))))))))))
113965374: 111111111+(1111111+(1111111+(1111111-(111111+(111111+(111111+(111111+(11111+(11111+(11111+(1111+(111+(111-(11+(11+(11+(11-(1+(1+(1+(1)))))))))))))))))))))
122448605: 111111111+(11111111+(111111+(111111+(1111+(1111+(1111+(1111-(111+(111+(111-(11+(11+(11+(11+(11-(1+(1+(1+(1+(1))))))))))))))))))))
126594161: 111111111+(11111111+(1111111+(1111111+(1111111+(1111111-(111111-(11111+(11111+(11111+(1111+(1111+(1111+(1111+(1111-(111+(111+(11+(11+(11+(11+(11+(1+(1+(1+(1+(1))))))))))))))))))))))))))
148064959: 111111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(111111+(111111+(111111-(11111+(11111+(11111+(11111+(1111+(111+(111+(111+(111+(111+(11+(11+(11+(11-(1+(1+(1))))))))))))))))))))))))))
150735075: 111111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(1111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111-(1111+(1111-(111+(111+(111+(111+(11+(11+(11+(1+(1+(1+(1))))))))))))))))))))))))))))
154382918: 111111111+(11111111+(11111111+(11111111+(11111111-(1111111+(111111-(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111+(1111-(111+(111+(111+(111-(11+(11+(11-(1+(1+(1)))))))))))))))))))))))))
172057472: 111111111+(11111111+(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(1111111-(111111+(11111+(11111+(11111+(11111+(11111-(1111+(1111-(111+(111+(111-(11+(11+(11-(1+(1+(1+(1+(1)))))))))))))))))))))))))))))
192280850: 111111111+(111111111-(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(11111+(11111+(11111+(11111+(11111+(1111+(1111+(1111-(111+(111+(11+(11+(11+(1+(1+(1+(1+(1)))))))))))))))))))))))))
194713795: 111111111+(111111111-(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(1111111-(111111+(111111+(11111+(11111+(11111+(11111+(1111+(1111+(111+(111+(111+(111+(11+(11-(1+(1+(1+(1))))))))))))))))))))))))))
207721209: 111111111+(111111111-(11111111+(1111111+(1111111+(1111111+(11111+(11111+(11111+(11111+(11111+(1111-(111-(11+(1+(1+(1))))))))))))))))
220946392: 111111111+(111111111-(1111111+(111111+(11111+(11111+(11111+(11111+(11111-(1111+(1111-(111+(111+(11+(11+(11+(11+(11-(1+(1)))))))))))))))))))
225230299: 111111111+(111111111+(1111111+(1111111+(1111111-(111111+(111111+(111111-(11111-(1111+(1111+(1111-(111+(111+(111-(11+(11+(11+(1))))))))))))))))))
227043979: 111111111+(111111111+(1111111+(1111111+(1111111+(1111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111-(111+(111+(111+(111+(11+(11-(1+(1))))))))))))))))))))
241011012: 111111111+(111111111+(11111111+(11111111-(1111111+(1111111+(1111111+(111111-(11111-(111-(11+(1)))))))))))
248906099: 111111111+(111111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(11111+(1111+(1111+(1111+(1111+(1111+(111+(111+(111+(111+(111-(11-(1))))))))))))))))))))
249796314: 111111111+(111111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(1111111-(111111+(111111-(11111+(11111-(1111+(1111+(1111+(111+(111+(111+(11+(11-(1+(1+(1)))))))))))))))))))))))
250546528: 111111111+(111111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(1111111+(111111+(111111+(111111+(111111+(111111-(11111-(1111+(1111-(111+(11+(11+(1+(1+(1+(1)))))))))))))))))))))))
258452706: 111111111+(111111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111-(111111+(111111+(111111+(111111-(11111-(1111+(1111+(1111-(111+(111+(111+(111+(11+(11+(11+(11-(1+(1+(1+(1)))))))))))))))))))))))))))
276862988: 111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111-(1111111-(111111+(111111-(11111+(11111+(1111+(1111+(1111+(111+(111+(111+(11+(1)))))))))))))))))))
277140688: 111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111-(1111111-(111111+(111111+(111111+(111111+(11111+(11111+(11111-(1111+(1111+(1111+(111+(111+(111+(111-(11+(11)))))))))))))))))))))))
280158490: 111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(111111+(11111+(11111+(11111+(11111+(1111+(1111+(1111-(111+(111+(111+(111-(11+(11+(11+(11+(1+(1+(1)))))))))))))))))))))))))))
286074562: 111111111+(111111111+(111111111-(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(1111+(1111+(1111-(111+(1+(1+(1+(1+(1)))))))))))))))))))))))))
308946627: 111111111+(111111111+(111111111-(11111111+(11111111+(1111111+(1111111-(11111+(11111+(11111+(11111+(11111+(1111+(1111-(11+(11+(11+(11-(1+(1+(1+(1+(1))))))))))))))))))))))
310972897: 111111111+(111111111+(111111111-(11111111+(11111111+(111111+(11111+(11111+(1111+(1111+(1111+(1111+(111+(111+(111+(111-(11-(1+(1+(1+(1))))))))))))))))))))
322612091: 111111111+(111111111+(111111111-(11111111-(111111+(111111+(111111+(11111+(11111+(11111+(11111+(11111+(1111-(111+(11+(11-(1+(1+(1))))))))))))))))))
324445400: 111111111+(111111111+(111111111-(11111111-(1111111+(1111111+(1111-(111+(11+(11+(11+(11)))))))))))
336060042: 111111111+(111111111+(111111111+(1111111+(1111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111+(11+(11+(11+(11)))))))))))))))))))))
346729632: 111111111+(111111111+(111111111+(11111111+(1111111+(1111111+(111111-(11111+(11111+(11111+(11111+(1111+(1111+(1111+(111+(111+(111+(11+(11+(11+(1+(1)))))))))))))))))))))
349428326: 111111111+(111111111+(111111111+(11111111+(1111111+(1111111+(1111111+(1111111+(111111+(111111+(111111+(111111+(111111-(11111+(1111+(1111+(1111+(1111+(111+(111+(111+(111+(111+(11-(1+(1+(1+(1)))))))))))))))))))))))))))
352769482: 111111111+(111111111+(111111111+(11111111+(11111111-(1111111+(1111111+(111111+(111111+(111111+(111111+(111111+(11111-(1111+(1111+(111+(111+(111+(111+(111+(11+(11+(11+(1+(1+(1+(1+(1)))))))))))))))))))))))))))
363039453: 111111111+(111111111+(111111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(111111+(111111+(111111-(11111+(11111+(11111+(11111-(1111+(1111+(1111+(1111+(111+(111+(111+(111+(111-(11-(1+(1+(1))))))))))))))))))))))))))))
363851029: 111111111+(111111111+(111111111+(11111111+(11111111+(11111111-(1111111+(1111111+(111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(1111+(1111+(1111+(1111+(111-(11+(11+(11-(1+(1+(1+(1+(1))))))))))))))))))))))))))))
392168304: 111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111-(11111+(11111+(11111+(11111+(11111-(1111+(111+(111+(111+(111+(111-(11+(11+(11-(1+(1+(1+(1+(1)))))))))))))))))))))))))))))
401975104: 111111111+(111111111+(111111111+(111111111-(11111111+(11111111+(11111111+(11111111-(1111111+(1111111-(111111+(111111+(11111+(11111+(1111+(1111+(111+(111+(111+(111+(11-(1+(1+(1)))))))))))))))))))))))
407890409: 111111111+(111111111+(111111111+(111111111-(11111111+(11111111+(11111111+(1111111+(1111111+(1111111-(111111+(1111+(111+(111+(111+(111-(11+(11+(11+(1+(1))))))))))))))))))))
407971913: 111111111+(111111111+(111111111+(111111111-(11111111+(11111111+(11111111+(1111111+(1111111+(1111111-(111111+(111111-(11111+(11111+(1111+(1111+(1111+(1111+(1111+(111+(111+(111-(11+(11+(1))))))))))))))))))))))))
425780757: 111111111+(111111111+(111111111+(111111111-(11111111+(11111111-(1111111+(1111111+(1111111+(111111+(111111+(1111+(1111+(1111-(111+(111+(111+(11+(11-(1+(1))))))))))))))))))))
459441559: 111111111+(111111111+(111111111+(111111111+(11111111+(1111111+(1111111+(1111111+(111111+(111111+(111111+(111111+(111111-(1111+(1111+(1111-(111+(111+(111+(111+(1+(1+(1+(1+(1))))))))))))))))))))))))
465592122: 111111111+(111111111+(111111111+(111111111+(11111111+(11111111-(1111111-(11111+(11111+(11111+(1111+(1111+(1111-(111-(11+(1)))))))))))))))
475898732: 111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111-(1111111+(1111111-(111111+(111111+(111111+(11111-(1111+(111+(11+(11+(11+(11+(1)))))))))))))))))))
482826596: 111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111-(111-(11+(11+(11+(11-(1)))))))))))))))))))))))))))))
484263150: 111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(1111111+(111111+(111111-(11111+(11111+(11111+(11111-(1111+(1111+(1111+(111+(111-(11+(11+(11+(11-(1+(1+(1+(1+(1)))))))))))))))))))))))))))))))
506235403: 111111111+(111111111+(111111111+(111111111+(111111111-(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(111111+(111111+(111111+(111111-(11111+(1111+(1111-(111+(11+(11+(11+(11-(1+(1))))))))))))))))))))))))))
548951531: 111111111+(111111111+(111111111+(111111111+(111111111-(11111111-(1111111+(1111111+(1111111+(1111111+(111111-(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111-(111+(111+(111+(111-(11+(11+(1+(1))))))))))))))))))))))))))
554295842: 111111111+(111111111+(111111111+(111111111+(111111111-(1111111+(111111+(11111+(11111+(11111+(1111+(1111+(1111+(1111-(111+(111+(111-(11+(11+(11+(11+(1+(1+(1)))))))))))))))))))))))
580536366: 111111111+(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(1111111+(1111111+(111111+(111111+(111111+(111111+(111111-(11111+(11111-(1111+(1111+(1111-(111+(111+(111-(11+(11+(11+(1)))))))))))))))))))))))))
587051904: 111111111+(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111-(1111111+(1111111-(111111+(111111+(111111+(11111+(11111+(11111+(11111+(11111-(1111+(1111+(1111+(111+(111+(111-(11+(1+(1+(1+(1+(1)))))))))))))))))))))))))))))
588265985: 111111111+(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111-(1111111-(111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111-(1111-(111+(111+(111+(111-(11+(1+(1))))))))))))))))))))))))
588298051: 111111111+(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111-(111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(1111+(1111-(111+(111+(11+(11+(11+(11+(11-(1+(1+(1+(1))))))))))))))))))))))))))))
590968352: 111111111+(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(1111111+(1111111-(111111+(11111+(11111+(11111-(1111+(111+(111+(111+(111+(111+(11+(11-(1+(1)))))))))))))))))))))))
601194306: 111111111+(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(1111111+(111111-(11111+(11111+(1111+(1111+(1111+(1111+(1111+(111+(11+(11+(1+(1+(1+(1+(1)))))))))))))))))))))))))
607771869: 111111111+(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(1111+(1111+(1111+(1111+(1111+(111+(111+(111+(11+(11-(1+(1))))))))))))))))))))))))
618578932: 1111111111-(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(111111+(111111+(111111-(11111+(11111+(1111+(11+(11+(11+(11-(1+(1)))))))))))))))))))))))
626776380: 1111111111-(111111111+(111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(1111111+(111111-(1111+(111+(111+(111-(11+(11+(11+(11+(1+(1)))))))))))))))))))))))
667919873: 1111111111-(111111111+(111111111+(111111111+(111111111-(1111111+(111111+(11111+(11111+(11111-(1111+(1111+(111+(11+(1+(1+(1+(1+(1))))))))))))))))))
681786366: 1111111111-(111111111+(111111111+(111111111+(111111111-(11111111+(1111111+(1111111+(1111111+(1111111-(111111+(111111+(111111+(111111-(11111-(1111+(1111+(111+(111+(111-(11+(11+(11-(1)))))))))))))))))))))))
689854904: 1111111111-(111111111+(111111111+(111111111+(111111111-(11111111+(11111111+(1111111-(111111+(11111+(11111+(11111+(1111-(111+(111+(111+(111+(11+(1+(1+(1+(1)))))))))))))))))))))
692055400: 1111111111-(111111111+(111111111+(111111111+(111111111-(11111111+(11111111+(1111111+(1111111+(1111111-(111111+(11111+(11111+(11111+(11111+(11111+(111+(11+(11+(11+(11+(1)))))))))))))))))))))
697665495: 1111111111-(111111111+(111111111+(111111111+(111111111-(11111111+(11111111+(11111111-(1111111+(1111111+(111111+(1111+(111-(11+(11+(11+(11+(11-(1+(1+(1+(1+(1))))))))))))))))))))))
711608194: 1111111111-(111111111+(111111111+(111111111+(111111111-(11111111+(11111111+(11111111+(11111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111+(11111-(1111+(1111+(1111-(111+(111+(111+(111-(11+(11+(1+(1+(1+(1+(1)))))))))))))))))))))))))))))))
734027104: 1111111111-(111111111+(111111111+(111111111+(11111111+(11111111+(11111111+(11111111-(1111111-(111111+(111111+(111111+(111111-(11111+(11111+(1111+(1111+(1111+(1111+(111+(111+(111+(111-(11-(1+(1+(1+(1)))))))))))))))))))))))))))
750869335: 1111111111-(111111111+(111111111+(111111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(111111+(111111+(11111+(11111-(1111+(1111+(111+(111+(111+(111+(1))))))))))))))))))))
757710567: 1111111111-(111111111+(111111111+(111111111+(11111111+(11111111-(1111111+(1111111-(111111-(11111+(11111+(11111+(11111-(111+(111+(111+(111+(111-(11))))))))))))))))))
759967747: 1111111111-(111111111+(111111111+(111111111+(11111111+(11111111-(1111111+(1111111+(1111111+(1111111-(11111+(11111+(11111-(1111-(11+(11+(11-(1+(1))))))))))))))))))
777616154: 1111111111-(111111111+(111111111+(111111111+(111111+(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111+(1111+(111+(111+(111+(111+(111-(11+(11+(11+(11-(1+(1+(1)))))))))))))))))))))))))
830071127: 1111111111-(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111-(111111-(11111+(11111+(11111+(11111-(1111+(1111+(1111+(1111+(11+(1+(1+(1+(1))))))))))))))))))))))))
833809927: 1111111111-(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111-(111111+(111111+(111111+(111111+(11111+(11111+(11111-(1111+(111-(11+(11+(11+(1+(1+(1+(1+(1))))))))))))))))))))))))
835873060: 1111111111-(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(111111+(111111+(111111-(11111+(1111+(1111+(1111+(1111+(111+(111+(11+(11+(11+(11+(11-(1+(1+(1)))))))))))))))))))))))))))
836438554: 1111111111-(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111-(111111+(111111+(1111+(1111+(1111+(1111+(1111+(111+(111+(111+(1+(1+(1)))))))))))))))))))))))
836945593: 1111111111-(111111111+(111111111+(11111111+(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(111111+(111111+(11111+(11111+(11111+(11111+(11111+(1111+(11+(11+(11+(1+(1+(1+(1+(1))))))))))))))))))))))))))
863728236: 1111111111-(111111111+(111111111+(11111111+(11111111+(1111111+(1111111+(1111111-(111111+(111111+(111111+(111111-(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111+(1111-(111+(111+(111+(111+(11+(1+(1)))))))))))))))))))))))))))
864158514: 1111111111-(111111111+(111111111+(11111111+(11111111+(1111111+(1111111+(111111+(111111+(111111-(11111+(11111+(11111+(11111+(1111+(1111+(1111-(111+(111+(111+(11+(11+(11+(11-(1+(1)))))))))))))))))))))))))
871273503: 1111111111-(111111111+(111111111+(11111111+(11111111-(1111111+(1111111+(1111111+(1111111+(111111+(11111+(11111+(11111+(11111+(11111-(1111+(1111+(1111+(1111-(111+(11+(11+(11+(11+(11+(1+(1+(1+(1))))))))))))))))))))))))))))
881615667: 1111111111-(111111111+(111111111+(11111111-(1111111+(1111111+(1111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111+(111+(1+(1))))))))))))))))))))))
891619600: 1111111111-(111111111+(111111111-(1111111+(1111111+(111111+(111111+(111111+(111111+(111111-(11111+(11111+(11111+(11111+(1111+(1111+(111+(111+(111+(111-(11+(11+(11+(11)))))))))))))))))))))))
897181691: 1111111111-(111111111+(111111111-(11111111-(1111111+(1111111+(111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(11111-(1111+(1111+(1111+(111+(111+(111+(111+(111+(11+(11+(1+(1))))))))))))))))))))))))))
918159061: 1111111111-(111111111+(111111111-(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(1111111-(111111+(111111+(111111+(11111+(11111+(11111+(11111+(1111+(1111+(1111+(111+(111-(11+(11+(11+(11+(1+(1+(1+(1+(1))))))))))))))))))))))))))))))
920521050: 1111111111-(111111111+(111111111-(11111111+(11111111+(11111111-(1111111+(111111+(111111+(111111+(111111+(111111+(11111+(11111+(11111+(1111+(111-(11+(11+(11+(11+(1+(1+(1+(1+(1)))))))))))))))))))))))))
924502226: 1111111111-(111111111+(111111111-(11111111+(11111111+(11111111+(1111111+(1111111+(11111+(11111+(11111+(11111+(11111+(1111+(1111+(1+(1+(1+(1+(1)))))))))))))))))))
929983535: 1111111111-(111111111+(111111111-(11111111+(11111111+(11111111+(11111111-(1111111+(1111111+(1111111+(11111+(1111+(1111+(1111+(1111+(1111-(111+(111-(11+(11-(1))))))))))))))))))))
943162304: 1111111111-(111111111+(11111111+(11111111+(11111111+(11111111+(11111111+(1111111+(111111+(11111+(11111+(11111+(11111+(11111+(1111+(1111+(1111+(1111-(111-(11+(11+(11-(1+(1)))))))))))))))))))))))
950210939: 1111111111-(111111111+(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(1111111-(111111+(111111-(11111+(111+(111-(11+(11+(11+(11+(1+(1+(1+(1+(1))))))))))))))))))))))))
950214176: 1111111111-(111111111+(11111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111+(1111111-(111111+(111111-(11111-(1111+(1111+(1111-(111+(111+(11+(11+(11+(11+(1+(1+(1)))))))))))))))))))))))))
962610357: 1111111111-(111111111+(11111111+(11111111+(11111111+(1111111+(1111111+(1111111+(1111111-(111111+(111111+(111111+(11111+(11111+(11111+(11111+(11111-(1111-(111+(111+(111+(11+(11+(1+(1))))))))))))))))))))))))
974842859: 1111111111-(111111111+(11111111+(11111111+(1111111+(1111111+(1111111-(111111+(111111+(111111+(111111-(11111+(11111+(11111+(11111+(1111+(111+(111+(111+(111+(11+(11+(11-(1+(1))))))))))))))))))))))))
988572832: 1111111111-(111111111+(11111111+(111111+(111111+(111111-(11111+(11111-(1111+(1111+(1111+(1111+(111+(111+(111+(111+(11+(11+(11+(11+(11+(1+(1+(1)))))))))))))))))))))))

5

Python,得分17136288

中学分数:12/09/2016 08:53
(4784个和3582个操作)

进行中,但OP要求输入我当前的代码...

# get number in factorial base, ignoring the place of 0! (always 0) 
r=lambda n,q=[],i=2:n and r(n//i,q+[n%i],i+1)or q

# rewrite a number in a form using only 1s by converting its factorial base, the range only requires using up to 12 places, again ignoring the 0! place so we only hard code 1 and [5-12] (9 numbers)
def g(n):
    k=['','1']+['1'+'+1'*i for i in range(1,4)]+['(11-1)/(1+1)','t(1+1+1)','1+t(1+1+1)','11-1-1-1','11-1-1','11-1','11','1+11']
    q=r(n)
    return n<13and k[n]or(q[0]and'1+'or'')+'+'.join((v>1and'('+k[v]+')*'or'')+(i>2and't'or'')+'('+k[i]+')'for i,v in enumerate(q[1:],2)if v)

#get g(n) representations after differencing from 0, 11, 111, 1111, ... then return the one with the minimal stand-alone score
def h(n):
    o=[g(n)]+[str(v)+(v<n and'+('or'-(')+g(abs(v-n))+')'for v in[int('1'*l)for l in range(2,11)]]
    s=[sum(map(v.count,'+-*/t'))*v.count('1')for v in o]
    return o[s.index(min(s))]

# A Factorial function for analysis with eval
def t(n):
    r = 1
    while n:
        r *= n
        n -= 1
    return r

输出-注意,t是阶乘函数,以免被混同ffloor它是否被使用-我每次使用功能评估t(上图)仔细检查,他们是正确的:

945536 11111111-(1+(1+1)+(1+1)*t(1+1+1)+((11-1)/(1+1))*t((11-1)/(1+1))+(t(1+1+1))*t(t(1+1+1))+(11-1-1-1)*t(11-1-1)+(1+1)*t(11-1))
16878234 11111111+(1+(1+1+1)*t(1+1+1)+t(1+1+1+1)+((11-1)/(1+1))*t((11-1)/(1+1))+t(t(1+1+1))+(11-1-1-1)*t(11-1-1-1)+((11-1)/(1+1))*t(11-1-1)+t(11-1))
32608778 111111111-(1+(1+1)*t(1+1+1)+(t(1+1+1))*t(t(1+1+1))+(1+t(1+1+1))*t(1+t(1+1+1))+(1+1)*t(11-1-1-1)+(t(1+1+1))*t(11-1-1)+(11-1)*t(11-1)+t(11))
42017515 111+((1+1)*(1+1)+(1+1+1)*t((11-1)/(1+1))+((11-1)/(1+1))*t(t(1+1+1))+(1+t(1+1+1))*t(11-1-1-1)+((11-1)/(1+1))*t(11-1-1)+t(11))
48950830 111+(1+t(1+1+1)+(1+1+1)*t(1+1+1+1)+(1+1+1)*t(t(1+1+1))+(11-1-1-1)*t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+(1+1)*t(11-1)+t(11))
51483452 11111111+(1+(1+1)+(1+1+1)*t(1+1+1)+(1+1+1+1)*t((11-1)/(1+1))+(1+1)*t(t(1+1+1))+(1+1)*t(1+t(1+1+1))+(1+1)*t(11-1-1-1)+t(11-1-1)+t(11))
52970263 111111111-((1+1)+t(1+1+1)+t((11-1)/(1+1))+(t(1+1+1))*t(t(1+1+1))+(1+t(1+1+1))*t(1+t(1+1+1))+t(11-1-1-1)+((11-1)/(1+1))*t(11-1)+t(11))
54278649 1+(1+1)+t(1+1+1)+(1+1+1+1)*t(t(1+1+1))+t(1+t(1+1+1))+((11-1)/(1+1))*t(11-1-1-1)+(11-1-1)*t(11-1-1)+(1+1+1)*t(11-1)+t(11)
63636656 1111111+(1+t(1+1+1+1)+(t(1+1+1))*t(t(1+1+1))+((11-1)/(1+1))*t(1+t(1+1+1))+(1+1)*t(11-1-1-1)+(1+1)*t(11-1-1)+(t(1+1+1))*t(11-1)+t(11))
78817406 1111+(1+t(1+1+1)+(1+1)*t(1+1+1+1)+t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+(11-1)*t(11-1)+t(11))
89918907 1+(1+1)+t(1+1+1+1)+(1+1)*t((11-1)/(1+1))+t(1+t(1+1+1))+(1+t(1+1+1))*t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+(1+1)*t(11-1)+(1+1)*t(11)
90757642 1111111+(1+(1+1)+(1+1)*t(1+1+1+1)+(1+1+1)*t(1+t(1+1+1))+(1+t(1+1+1))*t(11-1-1)+(1+1)*t(11-1)+(1+1)*t(11))
95364861 11111111+((1+1)*(1+1)+(1+1+1)*t(1+1+1)+(1+1)*t(1+1+1+1)+((11-1)/(1+1))*t(1+t(1+1+1))+t(11-1-1-1)+(1+1)*t(11-1-1)+t(11-1)+(1+1)*t(11))
102706605 1111+((1+1)+(1+1)*t(1+1+1)+(1+1+1)*t((11-1)/(1+1))+(1+1)*t(1+t(1+1+1))+(1+1+1)*t(11-1-1)+(t(1+1+1))*t(11-1)+(1+1)*t(11))
113965374 t(1+1+1)+(1+1)*t(1+1+1+1)+t((11-1)/(1+1))+t(t(1+1+1))+(1+1+1+1)*t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1)+(11-1-1)*t(11-1)+(1+1)*t(11)
122448605 111111+((1+1)+(1+1)*t(1+1+1)+t((11-1)/(1+1))+(1+1)*t(t(1+1+1))+t(1+t(1+1+1))+t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+(1+1+1)*t(11))
126594161 111111111+((1+1)+(1+1)*t(1+1+1+1)+t((11-1)/(1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1)*t(11-1-1)+(1+1+1+1)*t(11-1))
148064959 1111111111-((1+1+1)*t(1+1+1+1)+(1+1+1+1)*t(t(1+1+1))+(11-1-1-1)*t(11-1-1-1)+(1+1+1)*t(11-1-1)+t(11-1)+(1+1)*t(1+11))
150735075 11111111+((1+1)*(1+1)+t((11-1)/(1+1))+t(t(1+1+1))+(1+t(1+1+1))*t(1+t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+((11-1)/(1+1))*t(11-1)+(1+1+1)*t(11))
154382918 1111111+(1+t(1+1+1)+(1+1+1)*t((11-1)/(1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1+1)*t(11-1-1-1)+(1+1)*t(11-1-1)+(11-1-1)*t(11-1)+(1+1+1)*t(11))
172057472 1111+(1+t((11-1)/(1+1))+t(t(1+1+1))+(1+1)*t(1+t(1+1+1))+t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+(1+1+1)*t(11-1)+(1+1+1+1)*t(11))
192280850 1111111111-(1+(1+1)*(1+1)+(1+1+1+1)*t(1+1+1+1)+(1+1+1+1)*t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1)*t(11-1-1)+(11)*t(11)+t(1+11))
194713795 111111111+((1+1)*(1+1)+((11-1)/(1+1))*t((11-1)/(1+1))+((11-1)/(1+1))*t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1+1)*t(11-1-1-1)+t(11-1)+(1+1)*t(11))
207721209 111111+((1+1+1)*t(1+1+1)+(1+1)*t((11-1)/(1+1))+(1+1+1)*t(t(1+1+1))+t(11-1-1-1)+(1+1)*t(11-1-1)+(1+1)*t(11-1)+((11-1)/(1+1))*t(11))
220946392 111111111+(1+((11-1)/(1+1))*t(t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1)*t(11-1-1)+(11-1-1-1)*t(11-1)+(1+1)*t(11))
225230299 1111111111-((1+1)*t(1+1+1)+(1+1)*t(1+t(1+1+1))+(1+1)*t(11-1-1-1)+t(11-1-1)+(1+1)*t(11-1)+(11-1)*t(11)+t(1+11))
227043979 1111111111-((1+1)*t(1+1+1)+t(t(1+1+1))+(1+1)*t(1+t(1+1+1))+(1+1)*t(11-1-1-1)+(t(1+1+1))*t(11-1-1)+t(11-1)+(11-1)*t(11)+t(1+11))
241011012 11+(1+(1+1+1)*t((11-1)/(1+1))+(1+1+1+1)*t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+(t(1+1+1))*t(11))
248906099 11+((1+1)*t(1+1+1+1)+((11-1)/(1+1))*t((11-1)/(1+1))+(1+1)*t(1+t(1+1+1))+(11-1-1-1)*t(11-1-1-1)+((11-1)/(1+1))*t(11-1-1)+(1+1)*t(11-1)+(t(1+1+1))*t(11))
249796314 111111+(1+(1+1)+((11-1)/(1+1))*t(t(1+1+1))+(1+1+1+1)*t(1+t(1+1+1))+(11-1-1-1)*t(11-1-1)+(1+1)*t(11-1)+(t(1+1+1))*t(11))
250546528 111+(1+(1+1+1+1)*t(1+1+1+1)+(1+1+1+1)*t(t(1+1+1))+(1+t(1+1+1))*t(1+t(1+1+1))+(1+1+1)*t(11-1-1-1)+(1+1+1)*t(11-1)+(t(1+1+1))*t(11))
258452706 11+(1+t(1+1+1)+(1+1)*t(1+1+1+1)+(1+1)*t(t(1+1+1))+(1+1)*t(11-1-1-1)+(1+1)*t(11-1-1)+((11-1)/(1+1))*t(11-1)+(t(1+1+1))*t(11))
276862988 111+(1+(1+1)*(1+1)+(1+1+1)*t(1+1+1+1)+(1+1+1+1)*t((11-1)/(1+1))+((11-1)/(1+1))*t(1+t(1+1+1))+(11-1-1-1)*t(11-1-1-1)+(1+1)*t(11-1-1)+(11-1)*t(11-1)+(t(1+1+1))*t(11))
277140688 1111+(1+(1+1)+t(1+1+1)+(1+1)*t(1+1+1+1)+(1+1+1+1)*t(1+t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1+1)*t(11-1-1)+(11-1)*t(11-1)+(t(1+1+1))*t(11))
280158490 (1+1)*(1+1)+t(1+1+1)+(1+1+1)*t(1+t(1+1+1))+(1+1)*t(11-1-1)+(1+t(1+1+1))*t(11)
286074562 1111+(1+(1+1)+(1+1)*t(1+1+1+1)+t((11-1)/(1+1))+(1+1+1+1)*t(t(1+1+1))+(1+1+1)*t(11-1-1-1)+(11-1-1-1)*t(11-1-1)+t(11-1)+(1+t(1+1+1))*t(11))
308946627 11111+((1+1)*(1+1)+(1+1+1)*t(1+1+1+1)+((11-1)/(1+1))*t(t(1+1+1))+(1+1+1)*t(11-1-1-1)+t(11-1-1)+(11-1-1-1)*t(11-1)+(1+t(1+1+1))*t(11))
310972897 111111111+((1+1)*(1+1)+t(1+1+1)+(1+1+1+1)*t(1+1+1+1)+(1+1+1+1)*t((11-1)/(1+1))+(1+t(1+1+1))*t(1+t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+((11-1)/(1+1))*t(11))
322612091 11+((1+1)*t((11-1)/(1+1))+(1+1)*t(t(1+1+1))+(1+1)*t(1+t(1+1+1))+(11-1-1)*t(11-1-1)+(11-1-1-1)*t(11))
324445400 1111+(1+(1+1)*t(1+1+1+1)+(t(1+1+1))*t(t(1+1+1))+((11-1)/(1+1))*t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1)+t(11-1)+(11-1-1-1)*t(11))
336060042 11+(1+t(1+1+1)+t(1+1+1+1)+(1+1+1+1)*t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+(t(1+1+1))*t(11-1-1)+(1+1+1+1)*t(11-1)+(11-1-1-1)*t(11))
346729632 11111+(1+(1+1+1)*t((11-1)/(1+1))+(1+1)*t(t(1+1+1))+t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1-1)+((11-1)/(1+1))*t(11-1-1)+(1+t(1+1+1))*t(11-1)+(11-1-1-1)*t(11))
349428326 11+(1+(1+1)+(1+1+1)*t(1+1+1+1)+(1+1+1)*t(1+t(1+1+1))+(11-1-1-1)*t(11-1-1-1)+(1+1)*t(11-1-1)+(11-1-1-1)*t(11-1)+(11-1-1-1)*t(11))
352769482 1111+(1+(1+1)+(1+1)*t(1+1+1+1)+((11-1)/(1+1))*t(t(1+1+1))+t(1+t(1+1+1))+t(11-1-1-1)+(1+1)*t(11-1-1)+(11-1-1)*t(11-1)+(11-1-1-1)*t(11))
363039453 111111+(t(1+1+1)+(1+1+1+1)*t(1+1+1+1)+(1+1+1+1)*t(t(1+1+1))+t(1+t(1+1+1))+t(11-1-1-1)+t(11-1)+(11-1-1)*t(11))
363851029 1111+(t(1+1+1)+(1+1+1)*t(1+1+1+1)+(1+1+1)*t(t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1)*t(11-1-1)+t(11-1)+(11-1-1)*t(11))
392168304 11111111+(1+(1+1+1)*t(1+1+1+1)+(1+1+1+1)*t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+(t(1+1+1))*t(11-1)+(11-1-1)*t(11))
401975104 1111111+(1+(1+1)+t(1+1+1)+t(1+1+1+1)+(1+1+1)*t((11-1)/(1+1))+(1+1+1)*t(t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+(11-1)*t(11))
407890409 11111+((1+1+1)*t(1+1+1)+(1+1+1)*t(t(1+1+1))+(1+1+1+1)*t(11-1-1)+(1+1)*t(11-1)+(11-1)*t(11))
407971913 11111+((1+1+1)*t(1+1+1)+t(1+1+1+1)+t((11-1)/(1+1))+(1+1+1+1)*t(t(1+1+1))+(1+1)*t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+(1+1)*t(11-1)+(11-1)*t(11))
425780757 111+(t(1+1+1)+(1+1)*t(t(1+1+1))+(1+1+1)*t(11-1-1-1)+(1+1+1)*t(11-1-1)+(1+t(1+1+1))*t(11-1)+(11-1)*t(11))
459441559 1111111+((1+1)*t(1+1+1+1)+(1+1+1+1)*t(t(1+1+1))+(1+1)*t(1+t(1+1+1))+(1+1+1)*t(11-1-1)+((11-1)/(1+1))*t(11-1)+(11)*t(11))
465592122 1111+(1+(1+1)*(1+1)+t(1+1+1)+t((11-1)/(1+1))+t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1+1)*t(11-1-1)+(1+t(1+1+1))*t(11-1)+(11)*t(11))
475898732 11111+(1+(1+1)+(1+1+1)*t(1+1+1)+t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+(1+1+1)*t(11-1-1-1)+t(11-1-1)+(11-1)*t(11-1)+(11)*t(11))
482826596 111111+(1+(1+1)*(1+1)+t((11-1)/(1+1))+(t(1+1+1))*t(t(1+1+1))+(1+1)*t(11-1-1-1)+t(11-1)+t(1+11))
484263150 t(1+1+1)+t(1+1+1+1)+(1+1+1+1)*t((11-1)/(1+1))+(t(1+1+1))*t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+t(11-1)+t(1+11)
506235403 1111+((1+1)*t(1+1+1)+t((11-1)/(1+1))+(1+1)*t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+((11-1)/(1+1))*t(11-1-1)+(1+t(1+1+1))*t(11-1)+t(1+11))
548951531 11+((1+1+1+1)*t((11-1)/(1+1))+(t(1+1+1))*t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1)*t(11-1-1)+(11-1-1-1)*t(11-1)+t(11)+t(1+11))
554295842 (1+1)+(1+1)*t((11-1)/(1+1))+(1+1)*t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+(11-1-1)*t(11-1)+t(11)+t(1+11)
580536366 1111111111-(1+t(1+1+1+1)+(1+1)*t((11-1)/(1+1))+((11-1)/(1+1))*t(t(1+1+1))+t(11-1-1-1)+(1+1)*t(11-1-1)+(1+1+1)*t(11-1)+t(11)+t(1+11))
587051904 1111111111-(1+t(1+1+1)+(1+1+1+1)*t(1+t(1+1+1))+t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+t(11-1)+t(11)+t(1+11))
588265985 11+(t(1+1+1)+(1+1)*t(1+1+1+1)+(1+1+1)*t(t(1+1+1))+(1+t(1+1+1))*t(1+t(1+1+1))+t(11-1-1)+(11-1-1-1)*t(11-1)+(1+1)*t(11)+t(1+11))
588298051 11111111+((1+1)+(1+1+1)*t(1+1+1)+(1+1+1)*t((11-1)/(1+1))+t(t(1+1+1))+t(1+t(1+1+1))+((11-1)/(1+1))*t(11-1-1-1)+((11-1)/(1+1))*t(11-1)+(1+1)*t(11)+t(1+11))
590968352 1111111+(1+t((11-1)/(1+1))+t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1-1)+((11-1)/(1+1))*t(11-1-1)+(11-1-1-1)*t(11-1)+(1+1)*t(11)+t(1+11))
601194306 1111111+(1+(1+1)*(1+1)+t(1+1+1)+t(1+1+1+1)+((11-1)/(1+1))*t((11-1)/(1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1+1)*t(11-1-1)+(1+1+1)*t(11)+t(1+11))
607771869 1111111+((1+1)+(1+1)*t(1+1+1)+t(1+1+1+1)+(1+1)*t((11-1)/(1+1))+t(t(1+1+1))+t(1+t(1+1+1))+(1+t(1+1+1))*t(11-1-1-1)+t(11-1-1)+(1+1)*t(11-1)+(1+1+1)*t(11)+t(1+11))
618578932 111111111+(1+(1+1)*t(1+1+1)+(1+1)*t(1+1+1+1)+(1+1)*t((11-1)/(1+1))+(1+1+1+1)*t(11-1-1-1)+(11-1-1-1)*t(11-1-1)+(1+t(1+1+1))*t(11-1)+t(1+11))
626776380 1111+(1+(1+1)*(1+1)+t(1+1+1+1)+t((11-1)/(1+1))+t(t(1+1+1))+(1+1)*t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+(1+t(1+1+1))*t(11-1)+(1+1+1)*t(11)+t(1+11))
667919873 111111+((1+1)+t((11-1)/(1+1))+((11-1)/(1+1))*t(t(1+1+1))+((11-1)/(1+1))*t(1+t(1+1+1))+(1+1)*t(11-1-1-1)+(11-1-1-1)*t(11-1)+(1+1+1+1)*t(11)+t(1+11))
681786366 t(1+1+1)+(1+1+1)*t((11-1)/(1+1))+(1+1+1)*t(1+t(1+1+1))+(1+t(1+1+1))*t(11-1-1-1)+(11-1-1-1)*t(11-1-1)+((11-1)/(1+1))*t(11)+t(1+11)
689854904 1111+(1+(1+1+1)*t(1+1+1+1)+t((11-1)/(1+1))+((11-1)/(1+1))*t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+t(11-1-1)+(1+1+1)*t(11-1)+((11-1)/(1+1))*t(11)+t(1+11))
692055400 11+(1+(1+1)*(1+1)+t(1+1+1+1)+(1+1+1+1)*t(t(1+1+1))+t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+(1+1+1)*t(11-1)+((11-1)/(1+1))*t(11)+t(1+11))
697665495 1111111111-((1+1)*(1+1)+(1+1)*t(1+1+1)+(t(1+1+1))*t(t(1+1+1))+(1+1+1)*t(11-1-1-1)+(11-1-1)*t(11-1-1)+(1+1+1)*t(11-1)+(11-1)*t(11))
711608194 (1+1)*(1+1)+t(1+1+1)+t(1+1+1+1)+(1+1+1+1)*t((11-1)/(1+1))+t(11-1-1)+(11-1-1)*t(11-1)+((11-1)/(1+1))*t(11)+t(1+11)
734027104 11+(1+(1+1)*(1+1)+(1+1)*t(1+1+1+1)+(1+1)*t(t(1+1+1))+(1+t(1+1+1))*t(11-1-1-1)+(1+1)*t(11-1-1)+(1+1+1+1)*t(11-1)+(t(1+1+1))*t(11)+t(1+11))
750869335 111111111+((1+1)*(1+1)+(1+1)*t(1+1+1)+(1+1)*t(1+1+1+1)+t(t(1+1+1))+(1+1+1)*t(11-1-1)+(1+1+1+1)*t(11)+t(1+11))
757710567 11111+((1+1)*(1+1)+(1+1)*t(1+1+1)+(1+1)*t((11-1)/(1+1))+t(t(1+1+1))+t(1+t(1+1+1))+(11-1-1-1)*t(11-1-1)+(11-1)*t(11-1)+(t(1+1+1))*t(11)+t(1+11))
759967747 1111+((1+1)*t(1+1+1)+t(1+1+1+1)+t((11-1)/(1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1)*t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+(1+t(1+1+1))*t(11)+t(1+11))
777616154 11111+(1+(1+1)+((11-1)/(1+1))*t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+(1+t(1+1+1))*t(11-1-1-1)+(1+1)*t(11-1-1)+((11-1)/(1+1))*t(11-1)+(1+t(1+1+1))*t(11)+t(1+11))
830071127 1111+((1+1)*(1+1)+(1+1)*t(1+1+1)+(1+1+1)*t(t(1+1+1))+(1+1+1+1)*t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+(11-1-1-1)*t(11-1)+(11-1-1-1)*t(11)+t(1+11))
833809927 1111111111-(t(1+1+1+1)+(1+1+1)*t((11-1)/(1+1))+(1+1+1+1)*t(1+t(1+1+1))+t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+(11-1)*t(11-1)+(t(1+1+1))*t(11))
835873060 1111111111-(1+(1+1)+(1+1)*t(1+1+1+1)+((11-1)/(1+1))*t(t(1+1+1))+(1+1)*t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1-1)+(11-1-1-1)*t(11-1-1)+(11-1-1)*t(11-1)+(t(1+1+1))*t(11))
836438554 111+(1+(1+1+1)*t(1+1+1)+t(1+1+1+1)+((11-1)/(1+1))*t(11-1-1)+(11-1)*t(11-1)+(11-1-1-1)*t(11)+t(1+11))
836945593 11111111+((1+1)+(1+1)*t((11-1)/(1+1))+(1+t(1+1+1))*t(11-1-1-1)+((11-1)/(1+1))*t(11-1-1)+(1+t(1+1+1))*t(11-1)+(11-1-1-1)*t(11)+t(1+11))
863728236 1111+(1+(1+1)*(1+1)+(1+1+1)*t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+t(11-1-1-1)+(1+t(1+1+1))*t(11-1)+(11-1-1)*t(11)+t(1+11))
864158514 111+(1+(1+1)+(1+1+1+1)*t(1+t(1+1+1))+(1+1+1)*t(11-1-1-1)+t(11-1-1)+(1+t(1+1+1))*t(11-1)+(11-1-1)*t(11)+t(1+11))
871273503 111111111+((1+1+1)*t(1+1+1+1)+(t(1+1+1))*t(t(1+1+1))+t(1+t(1+1+1))+(1+t(1+1+1))*t(11-1-1-1)+(1+1+1+1)*t(11-1-1)+(1+t(1+1+1))*t(11)+t(1+11))
881615667 111+((1+1)*t(1+1+1)+t(1+1+1+1)+((11-1)/(1+1))*t(t(1+1+1))+(1+1+1)*t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1-1)+(11-1-1)*t(11-1-1)+(11-1)*t(11)+t(1+11))
891619600 1111111+(1+(1+1)+t(1+1+1)+(1+1)*t((11-1)/(1+1))+t(t(1+1+1))+(1+1+1+1)*t(11-1-1)+(1+1+1)*t(11-1)+(11-1)*t(11)+t(1+11))
897181691 111111+((1+1)+(1+1+1)*t(1+1+1)+(1+1)*t((11-1)/(1+1))+t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+(1+1)*t(11-1-1)+((11-1)/(1+1))*t(11-1)+(11-1)*t(11)+t(1+11))
918159061 1111+(t(1+1+1)+t(1+1+1+1)+(1+1)*t((11-1)/(1+1))+t(t(1+1+1))+(t(1+1+1))*t(1+t(1+1+1))+t(11-1-1-1)+(11)*t(11)+t(1+11))
920521050 11111+(1+(1+1+1)*t(1+1+1)+(t(1+1+1))*t(t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(t(1+1+1))*t(11-1-1)+(11)*t(11)+t(1+11))
924502226 (1+1)+t(1+1+1+1)+((11-1)/(1+1))*t((11-1)/(1+1))+(t(1+1+1))*t(t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+t(11-1)+(11)*t(11)+t(1+11)
929983535 1111111111-((1+1)+t(1+1+1)+(1+1)*t(1+1+1+1)+(1+1)*t(1+t(1+1+1))+t(11-1-1-1)+(11-1-1)*t(11-1-1)+((11-1)/(1+1))*t(11-1)+(1+1+1+1)*t(11))
943162304 1111+(1+(1+1+1)*t(1+1+1+1)+t(t(1+1+1))+(1+t(1+1+1))*t(1+t(1+1+1))+(11-1-1)*t(11-1-1)+(t(1+1+1))*t(11-1)+(11)*t(11)+t(1+11))
950210939 111111111+((1+1)+(1+1+1)*t(1+1+1)+(1+1)*t(1+1+1+1)+(1+1)*t((11-1)/(1+1))+(1+1+1)*t(11-1-1-1)+(1+1)*t(11-1-1)+(11-1-1)*t(11)+t(1+11))
950214176 1111111+(1+t(1+1+1+1)+(1+1+1+1)*t((11-1)/(1+1))+(1+1)*t(1+t(1+1+1))+(1+1+1+1)*t(11-1-1-1)+((11-1)/(1+1))*t(11-1-1)+(11-1-1-1)*t(11-1)+(11)*t(11)+t(1+11))
962610357 111+(t(1+1+1)+(1+1+1+1)*t((11-1)/(1+1))+(1+1)*t(1+t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+1)*t(11-1-1)+t(11-1)+(1+1)*t(1+11))
974842859 111111+((1+1)+(1+1+1)*t(1+1+1)+(1+1)*t(1+1+1+1)+t(t(1+1+1))+(1+t(1+1+1))*t(1+t(1+1+1))+(t(1+1+1))*t(11-1-1)+(1+1+1+1)*t(11-1)+(1+1)*t(1+11))
988572832 1111111111-(1+(1+1)+(1+1)*t(1+1+1)+t(1+1+1+1)+t(t(1+1+1))+t(1+t(1+1+1))+(t(1+1+1))*t(11-1-1-1)+(1+t(1+1+1))*t(11-1-1)+(1+1+1)*t(11))

这些t在输出中是什么?
QBrute

@QBrute呵呵,正为此写笔记
Jonathan Allan

我很确定时间是8:52,但是。
clismique

仅通过SE提供的时间戳(将鼠标悬停在修订历史记录中的大约时间上以查看确切时间)才有意义。达到分数的时间是08:53:13
trichoplax

(在这种情况下,对于谁获胜没有影响-似乎是清除其他任何分歧的最佳方法...)
trichoplax 16/09/12

4

JavaScript(ES6),27212498,2016-09-12 09:46:34Z

f=(n,a='+',s='-',m=n*9+'',r=m.replace(/./g,1))=>r-n?m<'55'?--r/10+a+f(n-r/10,a,s):r+s+f(r-n,s,a):r;
s = '';
[945536, 16878234, 32608778, 42017515, 48950830, 51483452, 52970263, 54278649, 63636656, 78817406, 89918907, 90757642, 95364861, 102706605, 113965374, 122448605, 126594161, 148064959, 150735075, 154382918, 172057472, 192280850, 194713795, 207721209, 220946392, 225230299, 227043979, 241011012, 248906099, 249796314, 250546528, 258452706, 276862988, 277140688, 280158490, 286074562, 308946627, 310972897, 322612091, 324445400, 336060042, 346729632, 349428326, 352769482, 363039453, 363851029, 392168304, 401975104, 407890409, 407971913, 425780757, 459441559, 465592122, 475898732, 482826596, 484263150, 506235403, 548951531, 554295842, 580536366, 587051904, 588265985, 588298051, 590968352, 601194306, 607771869, 618578932, 626776380, 667919873, 681786366, 689854904, 692055400, 697665495, 711608194, 734027104, 750869335, 757710567, 759967747, 777616154, 830071127, 833809927, 835873060, 836438554, 836945593, 863728236, 864158514, 871273503, 881615667, 891619600, 897181691, 918159061, 920521050, 924502226, 929983535, 943162304, 950210939, 950214176, 962610357, 974842859, 988572832].forEach(n => { s += f(n); console.log(n, f(n)); });
l = s.match(/1/g).length;
console.log((s.length - l) * l);

仅使用+和-。根据我的回答,将这些问题最小化


2106?这是一个很晚的答案:P
ASCII码,仅ASCII

4

蟒蛇

主要分数= 2214138604871819402525

中学分数= 12/09/2016,07:53

这是代码:

def print_1s(n):
    return ("1+" * n)[:-1]

只是为了使球滚动。

基本上是输出1+1+1...+1,其中1输出表达式中的个数等于n

总的来说,47054634305 1数字集和47054634205运算符都有+

不会在这里发布粘贴框,因为您知道了。


这实际上满足所有要求吗?使用调用时出现了溢出错误2**31-1
雅库布16/09/12

@Jakube Heh,heh,heh ...
clismique 2013年

@trichoplax的总和是n-1多少?这对我来说可以。
clismique 2016年

2

awk

基本分数46933701

中学分数12/09/2016 19:20

(6901个,6801个操作)

{
    for(b=""; $0; $0=int($0/2))
        b=and($0, 1) b
    for(chall=""; length(b=substr(b,2)); ) {
        if(chall!="")
            chall=chall"*"
        chall=chall"(1+1)"
        if(substr(b, 1, 1)=="1") {
            chall=chall"+1"
            if(length(b)>1)
                chall="("chall")"
        }
    }
    print chall
}

只需打印从左到右计算的二进制表示形式。

例如19是10011,它是((((((1)* 2 + 0)* 2 + 0)* 2 + 1)* 2 + 1

我只是省略了+0并写2(1+1)

我只是对这种方法的得分感到好奇。

输出:

945536:(((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)
16878234:(((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
32608778:((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) )+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
42017515:(((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1
48950830:(((((((((((((((((1 + 1)*(1 + 1)+1)**(1 + 1)+1)*((1 + 1)+1)* (1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1 )*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)
51483452:(((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)
52970263:((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1+ 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1
54278649:(((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1 )*(1 + 1)+1
63636656:((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1) *(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)
78817406:(((((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)
89918907:(((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1) +1)*(1 + 1)+1
90757642:((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 +1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) )
95364861:(((((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)*(1 + 1)+1
102706605:((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1
113965374:(((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)* (1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)
122448605:(((((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1
126594161:((((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 +1)*(1 + 1)+1
148064959:(((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 +1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1 )+1)*(1 + 1)+1)*(1 + 1)+1
150735075:(((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1+ 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1
154382918:(((((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)
172057472:((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)
192280850:((((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
194713795:((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1
207721209:(((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)+1
220946392:((((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 +1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)
225230299:(((((((((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1
227043979:((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1 )*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) *(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1
241011012:(((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)* (1 + 1)*(1 + 1)
248906099:(((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1
249796314:(((((((((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1) )+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
250546528:(((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 +1)*(1 + 1)*(1 + 1)
258452706:(((((((((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
276862988:((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1+ 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)
277140688:(((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)
280158490:(((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)
286074562:((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1+ 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) +1)*(1 + 1)
308946627:(((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1 )+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1
310972897:(((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1+ 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)+1
322612091:((((((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1+ 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1
324445400:((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)*(1 + 1)*(1 + 1)
336060042:((((((((((((((((1 + 1)*(1 + 1)+1)**(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1) *(1 + 1)*(1 + 1)+1)*(1 + 1)
346729632:(((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)*(1 + 1)
349428326:((((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)
352769482:(((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1+ 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1) *(1 + 1)*(1 + 1)+1)*(1 + 1)
363039453:(((((((((((((((((1 + 1)*(1 + 1)+1)**(1 + 1)*(1 + 1)+1)*(1 + 1 )+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1
363851029:((((((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1 )+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1
392168304:((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*( 1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 +1)*(1 + 1)
401975104:(((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)+1)*((1 + 1)+1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1) *(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)
407890409:((((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1
407971913:(((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) )+1
425780757:(((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1
459441559:((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1+ 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1
465592122:(((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*((1 + 1)+1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
475898732:((((((((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)
482826596:((((((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1 )+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)
484263150:((((((((((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)
506235403:(((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) +1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1
548951531:((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*( 1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1
554295842:(((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)
580536366:(((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1 )+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 +1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) )+1)*(1 + 1)+1)*(1 + 1)
587051904:((((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1 )*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)
588265985:((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)+1
588298051:(((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)+1
590968352:((((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1) *(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)
601194306:((((((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1) *(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
607771869:((((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1
618578932:(((((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)
626776380:((((((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)
667919873:((((((((((((((((1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1
681786366:(((((((((((((((((((((((1(1)*(1 + 1)+1)**(1 + 1)*(1 + 1)*(1 + 1)) )*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)
689854904:(((((((((((((((((1 + 1)*(1 + 1)+1)**(1 + 1)*(1 + 1)*(1 + 1)+1) )*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)
692055400:((((((((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)) )+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+ 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)
697665495:((((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1+ 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1
711608194:((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) +1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
734027104:((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+ 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1 )+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)
750869335:((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1
757710567:((((((((((((((((((((((1(1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* (1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1
759967747:(((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*( 1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1
777616154:((((((((((((((((((((1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
830071127:((((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1+ 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1
833809927:((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1
835873060:(((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) +1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1+ 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)
836438554:((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)* (1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
836945593:((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1+ 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1
863728236:(((((((((((((((((((((((1(+1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)
864158514:((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1) *(1 + 1)+1)*(1 + 1)
871273503:(((((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1
881615667:(((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)* (1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1+ 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1
891619600:((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 +1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) )*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)* (1 + 1)*(1 + 1)
897181691:((((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+ 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1) *(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1
918159061:((((((((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)* +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1) *(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) )+1
920521050:((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*((1 + 1)+1)* (1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1+ 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
924502226:(((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) +1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1) )+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)
929983535:(((((((((((((((((((((((1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1
943162304:(((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1) )*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)
950210939:(((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1) *(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)* (1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1
950214176:(((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)* (1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1) +1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1) )*(1 + 1)*(1 + 1)*(1 + 1)
962610357:(((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)* (1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 +1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)+1
974842859:((((((((((((((((((((((((1(+1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)* )*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)* (1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 +1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*( 1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1
988572832:((((((((((((((((((1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*( 1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1)*(1+ 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)+1)*(1 + 1)*(1 +1)+1)*(1 + 1)+1)*(1 + 1)*(1 + 1)*(1 + 1)+1)*(1 + 1)*(1 + 1)+1 )*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)*(1 + 1)

2

Python 3

主要分数: 69720516

中学分数: 09:30 14/09/2016

def genNum(num):
    dic = { 
        6: "(1+1+1)!",
        24: "(1+1+1+1)!",
        120: "((1+1+1)!-1)!",
        720: "((1+1+1)!)!",
        5040: "((1+1+1)!+1)!",
        40320: "((1+1+1)!+1+1)!",
        362880: "(11-1-1)!",
        39916800: "(11)!",
        479001600: "(11+1)!",
        6227020800: "(11+1+1)!"
    }

    lis = [6227020800,479001600,39916800,362880,40320,5040,720,120,24,6]
    out = ""

    for i in lis:
        if num/i >= 1:
            st = dic[i] + "*(" + genNum(num // i) + ")"
            out += st

            if num%i != 0:
               out += "+" + genNum(num%i)

          return out

    else:
        st = "1+"*num

    return st[:-1]

编辑:现在使用乘法来大大降低分数。

这充分利用了阶乘和递归。该程序总共使用:

  • 5958 那些
  • 11702 经营者

伊迪恩!


1

爪哇

主要分数 1045978739

中学分数 12/09/2016 16:05

37193 1s

28123 operators

     void main() {

    int arr[]={945536, 16878234, 32608778, 42017515, 48950830, 51483452, 52970263, 54278649, 63636656, 78817406, 89918907, 90757642, 95364861, 102706605, 113965374, 122448605, 126594161, 148064959, 150735075, 154382918, 172057472, 192280850, 194713795, 207721209, 220946392, 225230299, 227043979, 241011012, 248906099, 249796314, 250546528, 258452706, 276862988, 277140688, 280158490, 286074562, 308946627, 310972897, 322612091, 324445400, 336060042, 346729632, 349428326, 352769482, 363039453, 363851029, 392168304, 401975104, 407890409, 407971913, 425780757, 459441559, 465592122, 475898732, 482826596, 484263150, 506235403, 548951531, 554295842, 580536366, 587051904, 588265985, 588298051, 590968352, 601194306, 607771869, 618578932, 626776380, 667919873, 681786366, 689854904, 692055400, 697665495, 711608194, 734027104, 750869335, 757710567, 759967747, 777616154, 830071127, 833809927, 835873060, 836438554, 836945593, 863728236, 864158514, 871273503, 881615667, 891619600, 897181691, 918159061, 920521050, 924502226, 929983535, 943162304, 950210939, 950214176, 962610357, 974842859, 988572832

};
    int sum=1;
    for(int i=0;i<arr.length;i++){
    System.out.print(arr[i]+":");
        while(arr[i]>11){
            System.out.print("("+"1");
            sum=11;
            while(sum<=arr[i]){
            if(sum<=arr[i])
            System.out.print("*11");
            sum*=11;
        }
        arr[i]=arr[i]-sum/11;
        System.out.print(")");
        if(arr[i]!=0)
        System.out.print("+");

        }
        while(arr[i]--!=0){
        System.out.print(1);
        if(arr[i]!=0)
            System.out.print("+");
    }

        System.out.println();



    }
    }


945536:(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1+1
16878234:(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1+1+1
32608778:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+1+1+1+1
42017515:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+1
48950830:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1
51483452:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+1+1+1+1+1+1+1+1+1
52970263:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1
54278649:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1
63636656:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1
78817406:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1
89918907:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1
90757642:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+1+1+1+1+1+1+1+1
95364861:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1+1
102706605:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1
113965374:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1
122448605:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1
126594161:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1
148064959:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1+1
150735075:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1
154382918:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1
172057472:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1
192280850:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1
194713795:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1
207721209:(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11)+(1*11)+1+1+1
220946392:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+1+1+1+1+1+1+1+1+1
225230299:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1+1+1
227043979:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1+1+1
241011012:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1
248906099:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+1+1+1+1
249796314:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1+1+1+1
250546528:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1
258452706:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1
276862988:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1
277140688:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1
280158490:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1+1+1+1
286074562:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1
308946627:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1
310972897:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1
322612091:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1
324445400:(1*11*11*11*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+(1*11)+1+1+1+1+1+1

我认为您可以1在每个开始时摆脱不必要的内容(1*11*11*...*11)
clismique

1

埃马克斯·利斯普(Emacs Lisp)

主要得分:81638725
第二得分:12/09/2016 09:35

(defun 1s (n)
  (let((x 1)r)
    (while (> (/ n x) 11)
      (setq x (1+ (* x 10))))
    (while (> n 0)
      (while (>= n x)
        (push x r)
        (push '+ r)
        (setq n (- n x)))
      (setq x (/ x 10)))
    r))

基本上在等于(n)的域(1,11,111,...)上建立一个和。


据我了解,在您的程序中,当它收到类似124的输入时,它会输出111+11+1+1,对吗?(如果我错了,请纠正我。)
clismique

(时间也是格林尼治标准时间。)
clismique

1
得分<100万的情况如何?您是否将1整个100个数字输出中的所有s相加,并乘以+整个输出中的操作总数?
乔纳森·艾伦

2
这是一个得分81638725
乔纳森·艾伦

我不明白为什么这被否决了。有什么不对?

1

AWK,15642720

中学分数= 30/05/2017,21:11

BEGIN{RS="[,\n]"}
func f2(x) {
  div=int(x/11)
  mod=x%11
}
func trans(z){
  r=""
  if (z > 6) {
    r="11"
    for (i=11;i>z;i--){
      r=r"-1"
    }
  } else if (z>0){
    r=r 1
    for (i=1;i<z;i++){
      r=r"+1"
    }
  }
}
{n=$1
 do {f2(n)
   trans(mod)
   if (r) s=s"(" r  ")"
   if(div){
     if (r)s=s"+"
     s=s"11*("
     count++
   }
   n=div
 } while(div >10)
 trans(div)
 s = s r
 for (i=0;i<count;i++)s = s")"
 print $1": " s
 slength+=length(s)
 ones+=gsub("1","",s);
 parens+=gsub("[()]","",s);
 ops+=length(s);
 s=""
 count=0;
}
END {
  print "Total string length: " slength
  print "Ones: " ones
  print "Ops: " ops
  print "Parens: " parens
  print "Primary Score="ones*ops
}

在线尝试!

一个:4590

操作:3408主得分= 15642720次得分= 30/05/2017 21:11

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.