<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>inamori</author_name>
  <author_url>https://blog.hatena.ne.jp/inamori/</author_url>
  <blog_title>inamori’s diary</blog_title>
  <blog_url>https://inamori.hateblo.jp/</blog_url>
  <categories>
    <anon>Python</anon>
    <anon>PyPy</anon>
  </categories>
  <description>Problem 1を考えます。ふつうに書くとこんな感じです。 N = 10 ** 8 # オリジナルは1000 print sum(n for n in xrange(1, N) if n % 3 == 0 or n % 5 == 0) この問題はプログラマを関数型に導くためのものなのです。 これを動かすと、Pythonで13秒、PyPyで3.9秒でした。 これを露骨に手続き型で書くとこうなります。 N = 10 ** 8 s = 0L # 0とするより少し速い for n in xrange(1, N): if n % 3 == 0 or n % 5 == 0: s += n print s…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Finamori.hateblo.jp%2Fentry%2F20130413%2Fp1&quot; title=&quot;PyPyを速くする（2） 関数型 vs. 手続き型 - inamori’s diary&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2013-04-13 00:00:00</published>
  <title>PyPyを速くする（2） 関数型 vs. 手続き型</title>
  <type>rich</type>
  <url>https://inamori.hateblo.jp/entry/20130413/p1</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
