สารตกค้าง Palindromic


25

วันนี้ที่ฉันเขียนสิ่งนี้คือวันที่ 31 มีนาคม 3/31ในสหรัฐอเมริกานี้เป็น ฉันกำลังเล่นกับ331ตัวเลขที่จะเกิดขึ้นกับความท้าทายและพบว่าสิ่งที่เหลืออยู่ของมัน (จำนวนน้อยโมดูโล) เป็น Palindromic 331%2=1, 331%3=1, 331%4=3, 331%5=1, 331%6=1( 11311)

ความท้าทายของคุณที่นี่คือเมื่อได้รับจำนวนเต็มn > 2ผลผลิตแรกnตัวเลขบวกที่มีสารตกค้าง palindromic [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

อินพุต

เป็นจำนวนเต็มบวกเดียวnกับในรูปแบบที่สะดวกใดn > 2

เอาท์พุต

อาร์เรย์ผลลัพธ์ / รายการของnสารตกค้าง Palindromic แรกตามที่อธิบายไว้ข้างต้น อีกครั้งในรูปแบบที่เหมาะสม

กฎระเบียบ

  • สำหรับn > 10ให้สันนิษฐานว่ารายการส่วนที่เหลือจะถูกทำให้แบนก่อนที่จะตรวจสอบว่าเป็นโทนสีหรือไม่ นั่นคือ[1, 10, 11]palindromic แต่[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

@Arnauld ไม่จำเป็นต้องเป็นไม่ได้โดยมีเงื่อนไขว่ามีเพียงnองค์ประกอบแรก
AdmBorkBork

2
arrgh ... ความท้าทายของคุณ = กฎของคุณ แต่ " [1, 10, 11]เป็น palindromic แต่[1, 10, 1]ไม่ใช่" ดูเหมือนผิดทางคณิตศาสตร์
Greg Martin

1
@GregMartin palindromes Stringy ไม่ใช่ palyromes ที่ฉลาด ;-)
AdmBorkBork

1
GRR สตริงทั้งหมดแทนที่จะเป็นสมการทางคณิตศาสตร์ทำให้ภาษานี้ยากขึ้นพันเท่า โอ้ดี
MildlyMilquetoast

คำตอบ:


9

Haskell, 57 ไบต์

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

ตัวอย่างการใช้งาน: ->f 4 ลองออนไลน์![1,4,5,8]

ครั้งแรกที่=<<อยู่ในบริบทของฟังก์ชั่นและแปลเป็นแลมบ์ดา\x -> reverse x == xและที่สอง=<<อยู่ในบริบทรายการและเทียบเท่ากับconcatMapเช่นแผนที่และแบนราบหนึ่งรายการระดับ


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 จากโทรศัพท์ของคุณหรือไม่ เพราะคุณทำอย่างรวดเร็วฮ่า ๆ ๆ
Magic Octopus Urn

@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

การสาธิต

หมายเหตุ : เนื่องจากมีการโทรซ้ำหลายครั้งสิ่งนี้จะขัดข้องสำหรับn> 8ใน Firefox หรือn> 10บน Chrome


4

Python 2, 98 97 ไบต์

n=input();i=j=0
while i<n:
 j+=1;l=''
 for k in range(2,n+1):l+=`j%k`
 if l==l[::-1]:i+=1;print j

ลองออนไลน์!



@ Rod ขอบคุณ แต่ฉันเชื่อว่าจะล้มเหลวในการป้อนข้อมูล12เนื่องจากกฎแปลก ๆ ที่[1, 10, 11]ถือว่าเป็น palindrome
คณิตศาสตร์ junkie

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

สกาลา, 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!
Martin Ender

ขอบคุณ! ฉันสงสัยว่าถ้าฉันสามารถเปลี่ยนdef f(n:Int)=เป็น(n:Int)=>เพราะมันยังกำหนดฟังก์ชั่น (แต่ไม่มีชื่อ) มันช่วยประหยัด 4 ไบต์!
norbjd

ใช่ฟังก์ชั่นที่ไม่มีชื่อได้รับอนุญาตหากคุณไม่ต้องการชื่อสำหรับการโทรซ้ำหรืออะไรทำนองนั้น
Martin Ender

ยอดเยี่ยมแก้ไข :)
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, 139 Bytes กับ 1 loop

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

Beats 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

Japt 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.