1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

合成数列の和 Advent Calendar 2018 Julia編

Last updated at Posted at 2018-12-24

この記事は「合成数列の和 Advent Calendar 2018」25日目になります。

お題

解答

シクシク素数列 Advent Calendar 2018 Julia編 と同じ理由で今回も Julia 0.4 を使用しています。

filter(x->!isprime(x),(4:541).')[1:parse(readline())]|>sum|>print

オンライン実行環境で見る

解説は特にいらないくらいシンプルになりました。本当はリスト内包表記を使うともっとシンプルになるのですが、v0.4の時点ではその中でif文が使えず、仕方なくfilterで代用して上記の形に落ち着きました。(なぜv0.5以降では標準ライブラリから Primes.jlを削除してしまったのか・・・)

メモ

この問題は ずんだ問題 の番外編です

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?