> <>, Retina, Python 2: 144 127 123 byte
1 byte salvato grazie a @Loovjo rimuovendo uno spazio
4 byte salvati grazie a @ mbomb007 usando input
invece diraw_input
#v"PAPER"v?%4-2{"SCISSORS"v?%2:i
#>ooooo; >oooooooo<"ROCK"~<
a="KRS".index(input()[-1])
print["SCISSORS","ROCK","PAPER"][a]
Inserito in TNB come una sfida , ho deciso di provare questa combinazione di lingue.
> <>
Provalo online!
L'IP inizia a muoversi a destra.
# Reflect the IP so that it now moves left and it wraps around the grid
i: Take one character as input and duplicate it
I possibili caratteri che verranno inseriti nell'input sono PRS
(poiché il programma accetta solo il primo carattere). I loro ASCII-valori sono 80
, 81
e 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
Se l'input fosse rock, questo è ciò che accadrebbe:
< 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.
Altrimenti, se l'input fosse SCISSORS
o PAPER
, questo è ciò che l'IP incontrerebbe:
"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
Se l'input era PAPER
, quindi:
>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.
Altrimenti (se l'input era SCISSORS
):
"REPAP" Push these characters onto the stack
v>ooooo; Output them and exit the program (without any errors).
Retina
Provalo online!
In questo caso, Retina considera ciascuna coppia di due righe come una coppia di una corrispondenza e sostituzione. Ad esempio, tenta di sostituire qualsiasi cosa che corrisponda alla prima riga con la seconda riga, ma poiché la prima riga non viene mai abbinata, non la sostituisce mai con nulla, preservando così l'input.
Python 2
Provalo online!
Il programma Python richiede che l'input sia inserito tra "
s.
Le prime due righe sono commenti in 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