建造降价炸弹[关闭]


92

我敢肯定,我们大多数人都听说过拉链炸弹和类似的减压炸弹把戏,其中恶意制作的输入会产生大量不成比例的输出。我们甚至在这里一个问题,想在某一时刻对编译器执行操作。

好吧,我觉得Markdown是一种压缩格式,用“压缩的” MD令牌代替了笨重的HTML标签。因此,有可能在Markdown建造一个压缩炸弹吗?

挑战规则:

  • 提交内容应该是一段降价文字,长度在50到256个字符之间。(强加了一个最小值,以阻止一些智能警报发布3个字符的响应或类似内容。)

  • 该提交将由StackExchange的Markdown处理器(在此站点中实现)进行处理。

  • 您的分数将是结果HTML中的字符数与Markdown文本的字符数之比。

  • 最高分获胜。


5
格式沙箱可以派上用场的人测试他们发布的答案之前。
土司工程师

7
我们可能需要一个标准的解释器/查看器/检查器系统。人们正在为同一代码获得不同的字节数,因为某些标签未显示。
工程师吐司

3
这将演变为mathjax / latex实际的繁忙海狸代码
isaacg

6
我们应该计算渲染的 HTML还是 HTML?语言突出显示和MathJax在客户端而不是服务器端完成。
user202729

5
警告:测试此挑战的一些大答案可能会耗尽您的RAM。
user202729 '18

Answers:


106

块引用137,469 / 256 = 536.99

6,908个字符,511个新行,130,050个空格

Markdown肯定会奇怪地处理嵌套的块引用。每个>字符变成<blockquote></blockquote>一个固定的1:25比例。可是等等!渲染HTML时,每个嵌套还会添加两个空格!尝试渲染会导致我的浏览器有些痛苦,我现在将其保留在代码笼中。随时自己解锁!

输入的代码包含255,>后跟一个,&因为最后一个字符不转换,但确实可以转义。感谢BWO !作为最后一个字符,它为最后一个blockquote提供了一个带有内部p标记的破坏类。谢谢bta,多了11个字符

输入: >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>!

输出HTML:

...
  <blockquote>
    <blockquote class="spoiler">
      <p></p>
    </blockquote>
  </blockquote>
...

这是编辑器视图中的样子! 疯狂的嵌套块引号,使一个大三角形指向正确!

将结果绘制为>LambdaBeta建议的增加数量: 在此处输入图片说明


2
有趣的是,至少在编辑预览中,blockquotes很好地使文章列溢出。
ilkkachu

4
如果!在“与”号之前添加,则最后一级的quotquote将被添加“ class =“ spoiler”`。但是,将其添加到其他任何级别都会缩短输出。
bta

1
我很
as

1
如果我曾经看过,这就是“箭头代码”。
ZeroKnight

3
真好 这是二次增长,因为第j个引号添加了O(j)个新字符,因此我们得到big-O为1 + 2 + ... + n = O(n ^ 2)。您可以从图片中看到,三角形的高度为引号n,宽度为O(n),因此面积为O(n ^ 2)。其他非Mathjax答案似乎只是线性增长(十亿个错误的MathJax是指数增长)。
usul

62

MathJax,529 252 640 ish / 256≈2 067 393

好的旧的千笑式代码

$$\def\a{🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣}\def\b{\a\a\a\a\a\a\a\a\a\a\a\a\a}\def\c{\b\b\b\b\b\b\b\b\b\b\b}\def\d{\c\c\c\c\c\c\c\c}\d\d\d\d\d\d\d\d$$

将MathJax中表示外来字符的总无效效率乘以相当大的倍数。

已兑现了10 000宏扩展的StackExchange MathJax配置限制,而客户端浏览器的限制(很可能导致扩展宏的问题)却没有兑现。(我的浏览器也不配合,所以这个数字是一个估计值。)


2
对于任何其他想知道的人:en.wikipedia.org/wiki/Billion_laughs_attack
JollyJoker

2
这是一个很酷的发现,但是它不是Markdown,并且此站点上不支持MathJax,因此它超出了规则规定的参数范围。
梅森惠勒

22
areyousure是否不受支持?codegolf.stackexchange.com/editing-help上名为“ Markdown编辑帮助”的页面明确提到了LaTeX。
Roman Odaisky

1
@RomanOdaisky一点也不。您可能自己完成了计算,并得出了结论。我只是说,作为数学老师和发烧友,看来这将是一个很酷的练习。
亚瑟

6
@KamilDrakari您的愿望是我的命令🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣
Roman Odaisky

26

速记链接:68,960 / 256 = 269.375

仅ASCII:10,114 / 256 = 39.508

[][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1]
[1]:ftp://^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

输出是一系列元素,每个元素看起来像:

<a href="ftp://%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E"></a>

在创建URL引用的固定开销之后,每个5个字符的链接都会扩展为42+strlen(url)字符输出。精心设计URL使其具有最大数量的需要转义的字符,并且47+3*strlen(url)每个链接的字符数都会增加。少量实验表明,最佳输出涉及26个链接,每个链接114个插入符号。

更新:如果您将“ 256个字符”限制解释为包括Unicode字符,则可以消除更多混乱情况。用Unicode浴缸字符(character,代码点U + 1F6C1)替换插入符号会导致47+18*strlen(url)每个输入字符输出输出字符,总数为54,574 68,960(这要归功于jimmy23013的偶数更短的链接表示法)。

Unicode输入:

[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1]
[1]:ftp://🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁

输出是一系列的:

<a href="ftp://%EF%BF%BD%EF%BF%BD...per character...%EF%BF%BD%EF%BF%BD">1</a>,

欢迎来到PPCG!这是一个非常聪明的答案!
Mego

1
1.您可以使用[1],[1],[1]...这些链接。2. &quot;具有比%5E非Unicode版本更多的字符。
jimmy23013 '18

15

15888/50 = 317.76:滥用MathJaX

这是代码:

$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$

看起来是这样的:

&
&
&
&
&
&
&
&
&
&

生成的HTML为:

<p><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-618-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3081" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3082"><span id="MathJax-Span-3083" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3084"><span class="mtext" id="MathJax-Span-3085" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-618">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-619-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3086" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3087"><span id="MathJax-Span-3088" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3089"><span class="mtext" id="MathJax-Span-3090" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-619">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-620-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3091" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3092"><span id="MathJax-Span-3093" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3094"><span class="mtext" id="MathJax-Span-3095" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-620">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-621-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3096" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3097"><span id="MathJax-Span-3098" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3099"><span class="mtext" id="MathJax-Span-3100" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-621">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-622-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3101" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3102"><span id="MathJax-Span-3103" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3104"><span class="mtext" id="MathJax-Span-3105" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-622">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-623-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3106" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3107"><span id="MathJax-Span-3108" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3109"><span class="mtext" id="MathJax-Span-3110" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-623">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-624-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3111" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3112"><span id="MathJax-Span-3113" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3114"><span class="mtext" id="MathJax-Span-3115" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-624">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-625-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3116" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3117"><span id="MathJax-Span-3118" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3119"><span class="mtext" id="MathJax-Span-3120" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-625">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-626-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3121" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3122"><span id="MathJax-Span-3123" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3124"><span class="mtext" id="MathJax-Span-3125" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-626">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-627-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3126" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3127"><span id="MathJax-Span-3128" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3129"><span class="mtext" id="MathJax-Span-3130" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-627">&</script></p>

不要忘记您的MathJax伙伴。

注意:MathJaX仅在编辑期间显示错误,因此您必须在编辑器中查看它。这仍然是此站点上的降价实施,因此应该是有效的。一旦张贴Misplaced &警告变成正常&的。


14

语法高亮显示6376 6464/256≈25.25

+0.34375感谢Ismael Miguel(使用制表符而不是4个空格)!

本品采用最短的(可惜的空间似乎无关紧要)注释获得语法高亮lang-c,打开一个代码块,并填充它&0

<!-- language: lang-c -->

    &0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0

我们首先开始,&因为它扩展到了下一步&amp;并使用0,将这些交替不断地创建<span>具有class属性的新元素。不幸的是,我们不能只使用它们,&或者&<&<...由于它们保持不变pun-<div>

它产生:

<pre class="lang-c prettyprint prettyprinted" style=""><code><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span></code></pre></div>

并由您的浏览器呈现它导致:

&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0

如果你看看源代码,这个页面中,HTML只是<pre class="lang-c prettyprint-override"><code>&amp;0&amp;0&amp; ... 0&amp;0&amp;0&amp; </code></pre>其中...更多的是相同的。span标签根本不存在。那是739/256 = 2.887的分数
工程师吐司

@EngineerToast:什么浏览器?我使用的是Firefox 62,并且出现了,我用另一个答案注意到我得到了另一个分数,所以我想这取决于浏览器
。–

2
好吧...那将是一个问题。我将要求OP进行标准化。
工程师吐司

@EngineerToast这是由this引起的。
user202729

1
不要使用4个空格,而应使用单个选项卡。它也可以!
Ismael Miguel

5

190/50 = 3.8:斜体

事实证明,您的3个字符的担心是对的。*q*产生<em>q</em>的比率为10/3。两个回车符给出<p>...</p>\n\n(两个回车符不是必需的,但看起来确实产生了),结果比率为9/2。总比例为19/5。

*q*

*q*

*q*

*q*

*q*

*q*

*q*

*q*

*q*

*q*

产生的html:

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

实际上:

q

q

q

q

q

q

q

q

q

q


1
使用> q使用<blockquote>,而不是<em>更好。(请注意:您需要对其他所有行执行此操作,否则仅对其执行一个标记即可)
LambdaBeta

@LambdaBeta我什至没有想到Blockquote。是的,那个爆炸了
Draco18s 18/09/19

5

222/53 = <4.2:图像包含中令人讨厌的逃脱。

> ![&](https://&)

![&](https://&)
> ![&](https://&)

结果是:

和

和

和

产生的HTML应该大致为:

<blockquote>
  <p><img src="https://&amp;" alt="&amp;" title=""></p>
</blockquote>

<p><img src="https://&amp;" alt="&amp;" title=""></p>

<blockquote>
  <p><img src="https://&amp;" alt="&amp;" title=""></p>
</blockquote>

这滥用了图像的包容性并且不得不逃避事物。

它曾经要好得多,但显然SE的减价标准足以破坏它。

我之前提交的内容(不是SE呈现的方式)是:

428/50 = 8.56:图像包含物中令人讨厌的逃脱。

![&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&](&)

产生的HTML应该大致为:

<p><img src="&amp;" alt="&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;"></p>

这滥用了这样一个事实,即大多数降价编辑器都将alt文本中的&符号替换为双转义的&符号,以便其正确显示。同时,将一个&符号扔到src部分中,以便解析器实际上将其视为图像。


ε转换为&epsilon;。&#949;
乔纳森·弗雷希

我不知道。据我所知,它实际上不起作用-现在对其进行调试。我使用&是因为理论上要让alt文本正确显示,必须对其进行两次转义(&amp; amp;)。这适用于大多数降价促销,但在SE中似乎根本不产生任何输出...
LambdaBeta

您不能将其压缩[1]:https://&成一行,然后使用![&][1]更多次吗?
wizzwizz4

真的必须是https吗?http会给您更少的未扩展字符。或ftp如果可行。
immibis

4

MathJax:13,579 / 52 = 261.13

\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$

只需创建一堆空的嵌入式MathJax:

HTML代码(可以检查上方的空白区域):

<p><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1064-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2127" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2128"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1064"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1065-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2129" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2130"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1065"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1066-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2131" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2132"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1066"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1067-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2133" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2134"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1067"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1068-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2135" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2136"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1068"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1069-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2137" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2138"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1069"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1070-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2139" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2140"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1070"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1071-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2141" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2142"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1071"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1072-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2143" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2144"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1072"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1073-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2145" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2146"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1073"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1074-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2147" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2148"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1074"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1075-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2149" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2150"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1075"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1076-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2151" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2152"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1076"></script></p>

您可以从错误中获得更多。看看我的答案。
LambdaBeta

3

4830/256 = 18.87

[1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1](http://localhost:8080/welcome-to-my-fantastic-amazing-homepage-and-why-not-share-it-to-your-facebook-right-now.html)

基于HTML的自动更正的想法。分数不是很高。


2

421/56 = 7.518

>&

&
>&

&
>&

&
>&

&
>&

&
>&

&
>&

在SE上生成以下HTML:

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

...以及以下输出:



0

11190/255 =〜43.88

这个最高答案给了我灵感,但是我太傻了,无法击败它并达到最大字符数,因此,我想我必须对自己的\ _(ツ)_ /¯感到满意。在最后一个块引用后面实际上有两个空格,但是格式没有显示出来。

> - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - >

HTML:

<blockquote>
  <ul>
  <li><blockquote>
    <ul><li><blockquote>
      <ul><li><blockquote>
        <ul><li><blockquote>
          <ul><li><blockquote>
            <ul><li><blockquote>
              <ul><li><blockquote>
                <ul><li><blockquote>
                  <ul><li><blockquote>
                    <ul><li><blockquote>
                      <ul><li><blockquote>
                        <ul><li><blockquote>
                          <ul><li><blockquote>
                            <ul><li><blockquote>
                              <ul><li><blockquote>
                                <ul><li><blockquote>
                                  <ul><li><blockquote>
                                    <ul><li><blockquote>
                                      <ul><li><blockquote>
                                        <ul><li><blockquote>
                                          <ul><li><blockquote>
                                            <ul><li><blockquote>
                                              <ul><li><blockquote>
                                                <ul><li><blockquote>
                                                  <ul><li><blockquote>
                                                    <ul><li><blockquote>
                                                      <ul><li><blockquote>
                                                        <ul><li><blockquote>
                                                          <ul><li><blockquote>
                                                            <ul><li><blockquote>
                                                              <ul><li><blockquote>
                                                                <ul><li><blockquote>
                                                                  <ul><li><blockquote>
                                                                    <ul><li><blockquote>
                                                                      <ul><li><blockquote>
                                                                        <ul><li><blockquote>
                                                                          <ul><li><blockquote>
                                                                            <ul><li><blockquote>
                                                                              <ul><li><blockquote>
                                                                                <ul><li><blockquote>
                                                                                  <ul><li><blockquote>
                                                                                    <ul><li><blockquote>
                                                                                      <ul><li><blockquote>
                                                                                        <ul><li><blockquote>
                                                                                          <ul><li><blockquote>
                                                                                            <ul><li><blockquote>
                                                                                              <ul><li><blockquote>
                                                                                                <ul><li><blockquote>
                                                                                                  <ul><li><blockquote>
                                                                                                    <ul><li><blockquote>
                                                                                                      <ul><li><blockquote>
                                                                                                        <ul><li><blockquote>
                                                                                                          <ul><li><blockquote>
                                                                                                            <ul><li><blockquote>
                                                                                                              <ul><li><blockquote>
                                                                                                                <ul><li><blockquote>
                                                                                                                  <ul><li><blockquote>
                                                                                                                    <ul><li><blockquote>
                                                                                                                      <ul><li><blockquote>
                                                                                                                        <ul><li><blockquote>
                                                                                                                          <ul><li><blockquote>
                                                                                                                            <ul><li><blockquote>
                                                                                                                              <ul><li><blockquote>

                                                                                                                              </blockquote></li></ul>
                                                                                                                            </blockquote></li></ul>
                                                                                                                          </blockquote></li></ul>
                                                                                                                        </blockquote></li></ul>
                                                                                                                      </blockquote></li></ul>
                                                                                                                    </blockquote></li></ul>
                                                                                                                  </blockquote></li></ul>
                                                                                                                </blockquote></li></ul>
                                                                                                              </blockquote></li></ul>
                                                                                                            </blockquote></li></ul>
                                                                                                          </blockquote></li></ul>
                                                                                                        </blockquote></li></ul>
                                                                                                      </blockquote></li></ul>
                                                                                                    </blockquote></li></ul>
                                                                                                  </blockquote></li></ul>
                                                                                                </blockquote></li></ul>
                                                                                              </blockquote></li></ul>
                                                                                            </blockquote></li></ul>
                                                                                          </blockquote></li></ul>
                                                                                        </blockquote></li></ul>
                                                                                      </blockquote></li></ul>
                                                                                    </blockquote></li></ul>
                                                                                  </blockquote></li></ul>
                                                                                </blockquote></li></ul>
                                                                              </blockquote></li></ul>
                                                                            </blockquote></li></ul>
                                                                          </blockquote></li></ul>
                                                                        </blockquote></li></ul>
                                                                      </blockquote></li></ul>
                                                                    </blockquote></li></ul>
                                                                  </blockquote></li></ul>
                                                                </blockquote></li></ul>
                                                              </blockquote></li></ul>
                                                            </blockquote></li></ul>
                                                          </blockquote></li></ul>
                                                        </blockquote></li></ul>
                                                      </blockquote></li></ul>
                                                    </blockquote></li></ul>
                                                  </blockquote></li></ul>
                                                </blockquote></li></ul>
                                              </blockquote></li></ul>
                                            </blockquote></li></ul>
                                          </blockquote></li></ul>
                                        </blockquote></li></ul>
                                      </blockquote></li></ul>
                                    </blockquote></li></ul>
                                  </blockquote></li></ul>
                                </blockquote></li></ul>
                              </blockquote></li></ul>
                            </blockquote></li></ul>
                          </blockquote></li></ul>
                        </blockquote></li></ul>
                      </blockquote></li></ul>
                    </blockquote></li></ul>
                  </blockquote></li></ul>
                </blockquote></li></ul>
              </blockquote></li></ul>
            </blockquote></li></ul>
          </blockquote></li></ul>
        </blockquote></li></ul>
      </blockquote></li></ul>
    </blockquote></li></ul>
  </blockquote></li>
  </ul>
</blockquote>

2
代码本身看起来像是一个blockquote
qwr
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.