パリンドローム残留物


25

今日、これを書いているように、3月31日です。米国では、これは3/31です。私は331挑戦を思いつくための数字として遊んでいて、その残基(モジュロの小さな数字)は回文的であることがわかりました。331%2=1, 331%3=1, 331%4=3, 331%5=1, 331%6=111311)。

ここでの課題は、整数を指定したときに、モジュロをとったときにパリンドロームの残差を持つn > 2最初のn正の数を出力すること[2,n]です。

たとえば、入力の7場合、出力はである必要があります1, 42, 43, 140, 182, 420, 421。その理由を説明するチャートは次のとおりです。

        mod
num | 2 3 4 5 6 7
-----------------
  1 | 1 1 1 1 1 1
 42 | 0 0 2 2 0 0
 43 | 1 1 3 3 1 1
140 | 0 2 0 0 2 0
182 | 0 2 2 2 2 0
420 | 0 0 0 0 0 0
421 | 1 1 1 1 1 1

入力

単一の正の整数nn > 2 任意の便利な形式で

出力

n上記で概説したように、最初のパリンドローム残基の結果の配列/リスト。繰り返しますが、任意の適切な形式で。

ルール

  • のためにn > 10、それが回文であるかどうかをチェックする前に、残基リストが平坦化されると仮定します。つまり、[1, 10, 11]回文的ですが、そうでは[1, 10, 1]ありません。
  • 完全なプログラムまたは機能のいずれかが受け入れられます。関数の場合、出力する代わりに出力を返すことができます。
  • 可能であれば、他の人がコードを試すことができるように、オンラインテスト環境へのリンクを含めてください!
  • 標準的な抜け穴は禁止されています。
  • これはので、通常のゴルフルールがすべて適用され、最短のコード(バイト単位)が勝ちます。

[input]
[output]

3
[1, 6, 7]

4
[1, 4, 5, 8]

5
[1, 50, 60, 61, 110]

6
[1, 30, 31, 60, 61, 90]

7
[1, 42, 43, 140, 182, 420, 421]

8
[1, 168, 169, 336, 337, 504, 505, 672]

9
[1, 2520, 2521, 5040, 5041, 7560, 7561, 10080, 10081]

10
[1, 280, 281, 560, 1611, 1890, 1891, 2170, 2171, 2241]

11
[1, 22682, 27720, 27721, 50402, 55440, 55441, 78122, 83160, 83161, 105842]

出力は注文することになっていますか?
アーナルド

@Arnauld最初のn要素のみが含まれていれば、そうである必要はありません。
AdmBorkBork

2
arrgh ...あなたの挑戦=あなたのルールですが、「[1, 10, 11]回文的ですが、[1, 10, 1]そうではありません」は数学的に間違っているようです。
グレッグマーティン

1
@GregMartinマットなパリンドロームではなく、糸状のパリンドローム。;-)
AdmBorkBork

1
grr。マチパリンドロームではなくストリング全体が、特定の言語ではこれを1000倍難しくしています。しかたがない。
MildlyMilquetoast

回答:


9

Haskell、57バイト

f n=take n[x|x<-[1..],(==)=<<reverse$show.mod x=<<[2..n]]

使用例:f 4-> [1,4,5,8]オンラインでお試しください!

1つ目=<<は関数コンテキストにあり、ラムダに変換され、\x -> reverse x == x2つ目=<<はリストコンテキストにあり、と同等concatMap、つまりmap-and-flatten-one-list-levelです。


5

05AB1E、12バイト

µN2¹Ÿ%JÂQD½–

オンラインでお試しください!

説明

µ              # until counter equals input do:
 N             # push current iterations number
     %         # modulus each in
  2¹Ÿ          # range [2 ... input]
      J        # joined to string
       ÂQ      # equals it's reverse
         D     # duplicate
          ½    # if true, increase counter
           –   # if true print iteration number

携帯電話から05AB1Eの回答を投稿していますか?あなたがこれらの簡単な笑をするので。
魔法のタコUr

@carusocomputing:cp-1252の文字の多くが電話での入力/コピー&ペーストが面倒なので、めったにありません。これは、夕食後にコンピューターをチェックする直前に現れたので、タイミングが良かったです:)
Emigna


4

JavaScript(ES6)、104バイト

f=(n,x=(k=--n,2))=>k?([...Array(n)].map(_=>(r=x%++i+r,x%i),i=1,r='').join``==r?k--&&x+' ':'')+f(n,x+1):1

デモ

注意:再帰呼び出しが多数あるため、Firefoxではn> 8、Chrome ではn> 10でクラッシュします。



3

MATL、19バイト

修正された以前のバージョンのコードの間違いを指摘してくれた@AdmBorkBorkに感謝

`@Gq:Q\VXztP=?@]NG<

オンラインでお試しください!

説明

`        % Do...while
  @      %   Push iteration index, starting at 1
  Gq:Q   %   Push [2 3 ... n], where n is the input
  \      %   Modulo, element-wise
  V      %   Convert to string. Numbers are separated by spaces
  Xz     %   Remove spaces
  tP     %   Duplicate, flip
  =      %   Equal? (element-wise)
  ?      %   If all results were true
    @    %     Push current iteration index. It is one of the sought numbers
  ]      %   End
  N      %   Push number of elements in stack
  G      %   Push input n
  <      %   Less than? This is the loop condition
         % End (implicit). Display (implicit)

3

Scala、90 86 82バイト

(n:Int)=>Stream.from(1)filter{i=>val d=(2 to n)map(i%)mkString;d.reverse==d}take(n)

説明

Stream.from(1)                              // From an infinite Stream starting from 1,
    filter ( i => {                         // keep only elements matching the next condition :
        val d=(2 to n)map(i%)mkString;      // Generate residues and convert to String,
        d.reverse==d                        // return true if palindrom, false otherwise
    })take(n)                               // Finally, take the n first elements matching the condition

テストケース

val f = (n:Int)=>...    // assign function
(3 to 11).foreach { i =>
    println(i + "\n" + f(i).mkString(", ") + "\n")
}

結果

3
1, 6, 7

4
1, 4, 5, 8

5
1, 50, 60, 61, 110

6
1, 30, 31, 60, 61, 90

7
1, 42, 43, 140, 182, 420, 421

8
1, 168, 169, 336, 337, 504, 505, 672

9
1, 2520, 2521, 5040, 5041, 7560, 7561, 10080, 10081

10
1, 280, 281, 560, 1611, 1890, 1891, 2170, 2171, 2241

11
1, 22682, 27720, 27721, 50402, 55440, 55441, 78122, 83160, 83161, 105842

編集

#1(90 => 86)

  • 匿名関数

#2(86 => 82)

  • 括弧またはブラケットの後の不要なドット文字を削除します(例:(2 to n).map(%i)=>(2 to n)map(%i)

1
PPCGへようこそ!
マーティンエンダー

ありがとう!私は変更することができれば、私は思っていたdef f(n:Int)=(n:Int)=>、それはまた、関数を定義します(ただし、名前なし)以来、。4バイト節約できます!
-norbjd

はい、名前のない関数は許可されますが、再帰呼び出しなどの名前が必要ない場合に限ります。
マーティンエンダー

素晴らしい、編集:)
norbjd

2

ゼリー、12 バイト

%ЀḊDFŒḂ
1ç#

どうやって?

1ç# - Main link: n
1   - initialise "i" at 1
  # - increment i and yield a list of the first n truthful results of:
 ç  -     last link (1) as a dyad

%ЀḊDFŒḂ - Link 1, test a value "i" for mod [2,n] being palindromic: i, n
 Ѐ      - for each, mapped over the right argument, i.e. for j = 1 to n:
%        -     i modulo j
   Ḋ     - dequeue, i.e. discard the modulo 1 result
    D    - convert to decimal list (vectorises)
     F   - flatten into one list
      ŒḂ - is palindromic?

オンラインでお試しください!


1

CJam、28バイト

0ri:N{{)_N),2>f%s_W%#}g_p}*;

オンラインでお試しください!

説明

0          e# Push 0, the value we'll repeatedly increment to search for valid outputs.
ri:N       e# Read input, convert to integer, store in N.
{          e# Run this block N times...
  {        e#   Run this block until the condition is true, which will find the next
           e#   number with palindromic residues...
    )_     e#     Increment and duplicate.
    N),2>  e#     Push [2 3 ... N].
    f%     e#     Take the current value modulo each of these.
    s      e#     Flatten them into a single string.
    _W%    e#     Duplicate and reverse.
    #      e#     Try to find the reverse in the original. A common way to compute
           e#     "not equal" for strings of the same length.
  }g
  _p       e#   Print a copy of the result.
}*
;          e# Discard the final result to prevent printing it twice.

1

PHP、93バイト

for(;$x<$a=$argn;$s="")for($i=1,++$n;$i++<$a;)if($i==$a&strrev($s.=$n%$i)==$s)echo$n._.!++$x;

オンラインバージョン2ループが文字列として出力

拡大

for(;$x<$a=$argn;$s="") 
for($i=1,++$n;$i++<$a;)
    if($i==$a&strrev($s.=$n%$i)==$s)echo$n._.!++$x; 

PHP 130バイト

for(;count($r)<$a=$argn;$s=[])for($i=1,++$n;$i++<$a;){$s[]=$n%$i;if(count($s)==$a-1&strrev($j=join($s))==$j)$r[]=$n; }print_r($r);

オンラインバージョン2ループ

拡大

for(;count($r)<$a=$argn;$s=[])
for($i=1,++$n;$i++<$a;){
    $s[]=$n%$i;
    if(count($s)==$a-1&strrev($j=join($s))==$j)$r[]=$n; 
}
print_r($r);

PHP、1ループの139バイト

for($i=$n=1;count($r)<($a=$argn)&$i++<$a;){$s[]=$n%$i;if(count($s)==$a-1){if(strrev($j=join($s))==$j)$r[]=$n;$n++;$s=[];$i=1;}}print_r($r);

オンラインバージョン1ループ

で実行

echo '<string>' | php -nR '<code>'

拡大

for($i=$n=1;count($r)<($a=$argn)&$i++<$a;){
    $s[]=$n%$i;
    if(count($s)==$a-1){
        if(strrev($j=join($s))==$j)$r[]=$n;
        $n++;
        $s=[];
        $i=1;
    }
}
print_r($r);

1

QBIC、48バイト

:{A=G[2,a|A=A+!q%b$]~A=_fA||h=h+1?q]q=q+1~h=a|_X

Mathematicaに勝つ!サンプル実行:

Command line: 10
 1 
 280 
 281 
 560 
 1611 
 1890 
 1891 
 2170 
 2171 
 2241 

説明:

:{          Get 'a' from the command line, start an inf. loop
A=G         Clear out whatever's in A$
[2,a|       For each of the numbers we want to modulo
A=A+        Add to A$ 
     q%b       our current number MODULO te loop iterator
    !   $      cast to string
]           NEXT
~A=_fA|     If the string of remainders is a palindrome (_f ... | is Reverse())
|h=h+1      THEN h=h+1 (h starts at 0) - this counts how many hits we've had
 ?q            also, print the number with the palindromic remainder
]           END IF
q=q+1       Test the next number
~h=a|_X     If we've had 'a' hits, quit.
            The last IF and the infinite loop are closed implicitly.

1

ジャプト、26バイト

L³o fR{C=Uò2@R%Xì ¥CwÃj1U

オンラインでお試しください!すべての入力に数秒かかりますので、しばらくお待ちください。

何らかの条件を満たす最初のN個の数値を取得する組み込み関数がある場合、これはかなり短くなります(高速になります)。

R{C=Uò2@R%Xì ¥Cw}aU
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.