You are here: Home Blog Comments ワンライナー@シェルスクリプト

Personal tools

ワンライナー@シェルスクリプト

Posted by Anonymous User at 2006-06-22 00:02

エラトステネスの篩のようなもので非効率的に素数を列挙します
n=100;for i in `seq 2 $n`;do for j in `seq $i $i $n`;do echo $j;done;done|sort -n|uniq -c|egrep '^ *1[^0-9]'|sed 's/.*[ \t]//'|xargs printf '%d ';echo ''

Parent entry キミならどう書く 2.0 - ROUND 1 -