4. example_com

urllib.urlopenで瞬殺かと思ったが鯖外へのアクセス禁止なので自分で吐けということらしい。
417byte。

q='&quot;';e=q+'example.';print'''<HTML>
<HEAD>
  <TITLE>Example Web Page</TITLE>
</HEAD>
<body>
<p>You have reached this web page by typing %scom%s,
%snet%s,
  or %sorg%s into your web browser.</p>
<p>These domain names are reserved for use in documentation and are not availabl
e
  for registration. See <a href="http://www.rfc-editor.org/rfc/rfc2606.txt">RFC
  2606</a>, Section 3.</p>
</BODY>
</HTML>'''%((e,q)*3)

300台の人たちはどうやってるんだろう。


追記
わざわざeとか名付ける必要はなかった。

q='&quot;';print'''<HTML>
(中略)
</HTML>'''%((q+'example.',q)*3)

413byte。