2024 HHC Programming Contest - RPN #1
|
09-23-2024, 11:39 AM
Post: #21
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
I had:
1) LBLA 7 Enter 7 / 7 + Enter Enter + + END 2) LBLA Sigma+ Sigma+ Sigma+ Enter 7 + 7 + 7 + END |
|||
09-23-2024, 12:02 PM
Post: #22
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 11:04 AM)Gene Wrote: Here are the solutions from the conference: How is this supposed to work? Some instruction missed in the listing (but still 12 bytes listed)? On a MC 41 I only get 21 (7*3) into X ... Cheers, Thomas [35/45/55/65/67/97/80 21/25/29C 31E/32E/33E|C/34C/38E 41C|CV|CX 71B 10C/11C/12C/15C|CE/16C 32S|SII/42S 28C|S 48GX/49G/50G 35S 41X] |
|||
09-23-2024, 12:29 PM
Post: #23
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
And BTW ...
(09-23-2024 11:04 AM)Gene Wrote: Is there an 11 byte solution given the LBL A and END ? Here is one I just found ... Code: LBL A 2 Cheers, Thomas [35/45/55/65/67/97/80 21/25/29C 31E/32E/33E|C/34C/38E 41C|CV|CX 71B 10C/11C/12C/15C|CE/16C 32S|SII/42S 28C|S 48GX/49G/50G 35S 41X] |
|||
09-23-2024, 12:33 PM
Post: #24
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1 | |||
09-23-2024, 12:33 PM
Post: #25
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 12:02 PM)ThomasF Wrote:(09-23-2024 11:04 AM)Gene Wrote: LBL A 7 Sigma+ 7 Sigma+ 7 Sigma+ RCL 11 END Obviously a missing + at the end, making 13 bytes total. Also " LBL A COS ATAN 7 - 7 - 7 - END " is 13 bytes long. BTW, my solution was LBL A 77.7 LN INT FACT END close the last listed solution of the conference's results. J-F |
|||
09-23-2024, 12:35 PM
Post: #26
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1 | |||
09-23-2024, 12:37 PM
Post: #27
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 12:33 PM)J-F Garnier Wrote: Obviously a missing + at the end, making 13 bytes total. Hi J-F, Yes, thought so too, but Sigma+ doesn't enable stacklift, so after RCL 11 Y is still 0. So, there must be both a ENTER and a + missing to make it work ... i.e. 14 bytes in total. Cheers, Thomas [35/45/55/65/67/97/80 21/25/29C 31E/32E/33E|C/34C/38E 41C|CV|CX 71B 10C/11C/12C/15C|CE/16C 32S|SII/42S 28C|S 48GX/49G/50G 35S 41X] |
|||
09-23-2024, 01:01 PM
Post: #28
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 12:35 PM)Didier Lachieze Wrote:(09-23-2024 12:29 PM)ThomasF Wrote: Here is one I just found ... Really amazing, congrats Thomas ! Now, what if using only integer arithmetic? We already have this 13-byte solution: LBL A 7 ENTER 7 + 7 ÷ x^2 FACT END J-F |
|||
09-23-2024, 01:29 PM
Post: #29
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 01:01 PM)J-F Garnier Wrote:(09-23-2024 12:35 PM)Didier Lachieze Wrote: Wonderful ! Thanks J-F Challenge taken! My first attempt is: LBL A 77 DEC LASTx + 7 / OCT END But also counts down to 13 bytes, but there is probably more ways to do it ... Cheers, Thomas [35/45/55/65/67/97/80 21/25/29C 31E/32E/33E|C/34C/38E 41C|CV|CX 71B 10C/11C/12C/15C|CE/16C 32S|SII/42S 28C|S 48GX/49G/50G 35S 41X] |
|||
09-23-2024, 01:46 PM
Post: #30
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 01:01 PM)J-F Garnier Wrote: We already have this 13-byte solution: And now ... a 12 byte version ... LBL A 77 X² OCT 7 MOD FACT END Cheers, Thomas [35/45/55/65/67/97/80 21/25/29C 31E/32E/33E|C/34C/38E 41C|CV|CX 71B 10C/11C/12C/15C|CE/16C 32S|SII/42S 28C|S 48GX/49G/50G 35S 41X] |
|||
09-23-2024, 04:00 PM
Post: #31
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 12:37 PM)ThomasF Wrote:(09-23-2024 12:33 PM)J-F Garnier Wrote: Obviously a missing + at the end, making 13 bytes total. Bravo ThomasF! PI percents of something... sounds crazy but it did the job. |
|||
09-23-2024, 09:03 PM
(This post was last modified: 09-23-2024 09:03 PM by badaze.)
Post: #32
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 11:04 AM)Gene Wrote: Here are the solutions from the conference: I was about to post almost the same code… My site http://www.emmella.fr |
|||
09-23-2024, 10:58 PM
Post: #33
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
My two versions on PX-41CX
Code: 001 LBL A CF 66 Code: 001 LBL A CF 66 http://ti58c.phweb.me http://clones.phweb.me http://www.instagram.com/ti58c "No! Do or Do not. There is no try!" [Master Yoda] |
|||
09-23-2024, 11:06 PM
(This post was last modified: 09-23-2024 11:07 PM by Paul Dale.)
Post: #34
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
My best entry is:
Code:
|
|||
09-24-2024, 01:42 AM
(This post was last modified: 09-24-2024 09:03 AM by Paul Dale.)
Post: #35
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
My other attempts being:
Code:
Code:
This one edited to correct mistake: Code:
|
|||
09-24-2024, 06:08 AM
Post: #36
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-24-2024 01:42 AM)Paul Dale Wrote: Should the INT not be before the first ENTER, straight after LN? ln(777) ≈ 6.655..... so your program gives 26 instead of 24. int(ln(777)) = 6 Current daily drivers: HP-41CL, HP-15C, HP-16C |
|||
09-24-2024, 09:02 AM
Post: #37
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
Yes, transcription error on my part.
Pauli |
|||
09-24-2024, 12:31 PM
(This post was last modified: 09-24-2024 12:40 PM by AnnoyedOne.)
Post: #38
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 11:06 PM)Paul Dale Wrote: My best entry is: Nice Paul! It even works in my HP 25 (PC) emulator. The 25 doesn't implement labels but the 29C does (0-9). Code:
9 steps/bytes, I think, in my 29C emulator. A1 HP-15C (2234A02xxx), HP-16C (2403A02xxx), HP-15C CE (9CJ323-03xxx), HP-20S (2844A16xxx), HP-12C+ (9CJ251) |
|||
09-24-2024, 03:47 PM
Post: #39
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1
(09-23-2024 12:02 PM)ThomasF Wrote:Indeed there was one additional instruction. Another Sigma+ before RCL11 that would give 24, but 13 bytes also of course.(09-23-2024 11:04 AM)Gene Wrote: Here are the solutions from the conference: Günter |
|||
09-24-2024, 03:55 PM
Post: #40
|
|||
|
|||
RE: 2024 HHC Programming Contest - RPN #1 | |||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)