> <>、Retina、Python 2:144 127 123バイト
スペースを削除することで@Loovjoのおかげで1バイト節約
@ mbomb007のおかげで、input
代わりにraw_input
#v"PAPER"v?%4-2{"SCISSORS"v?%2:i
#>ooooo; >oooooooo<"ROCK"~<
a="KRS".index(input()[-1])
print["SCISSORS","ROCK","PAPER"][a]
TNBに課題として投稿し、この言語の組み合わせを試してみることにしました。
> <>
オンラインでお試しください!
IPは右に移動し始めます。
# Reflect the IP so that it now moves left and it wraps around the grid
i: Take one character as input and duplicate it
入力に使用できる文字は次のとおりですPRS
(プログラムは最初の文字のみを使用するため)。それらのASCII値は80
、81
および82
です。
2% Take the modulo 2 of the character. Yields 0, 1, 0 for P, R, S respectively
?v If this value is non-zero (ie the input was ROCK), go down, otherwise skip this instruction
入力がロックである場合、これは何が起こるかです:
< Start moving to the left
~ Pop the top most value on the stack (which is the original value of R and not the duplicate)
"KCOR" Push these characters onto the stack
< Move left
oooo Output "ROCK" as characters (in turn these characters are popped)
o Pop the top value on the stack and output it; but since the stack is empty, the program errors out and exits promptly.
それ以外の場合、入力がSCISSORS
またはの場合PAPER
、これはIPが遭遇することです。
"SROSSICS" Push these characters onto the stack
{ Shift the stack, so the the original value of the first char of the input would come to the top
2-4% Subtract 2 and take modulo 4 of the ASCII-value (yields 2, 0 for P, S respectively)
?v If it is non-zero, go down, otherwise skip this instruction
入力がの場合PAPER
:
>ooooooooo Output all characters on the stack (ie "SCISSORS")
< Start moving left
o Pop a value on the stack and output it; since the stack is empty, this gives an error and the program exits.
それ以外の場合(入力がの場合SCISSORS
):
"REPAP" Push these characters onto the stack
v>ooooo; Output them and exit the program (without any errors).
網膜
オンラインでお試しください!
この場合、Retinaは2行の各ペアを一致と置換のペアと見なします。たとえば、最初の行に一致するものはすべて2番目の行に置き換えようとしますが、最初の行が一致することはないため、何にも置換されないため、入力は保持されます。
Python 2
オンラインでお試しください!
Pythonプログラムでは、入力を"
sの間に入れる必要があります。
最初の2行はPythonのコメントです。
a="KRS".index(input()[-1]) # Get the index of the last character of the input in "KRS"
print["SCISSORS","ROCK","PAPER"][a] # Print the ath index of that array