コード

5バイトだけ!

try:
    eval(input("code> ")[:5])
except SystemExit:
    print("Alpaca{REDACTED}")

🤔

All identifiers are converted into the normal form NFKC while parsing; comparison of identifiers is based on NFKC. https://peps.python.org/pep-3131/

The following changes will need to be made to the parser:

  1. If a non-ASCII character is found in the UTF-8 representation of the source code, a forward scan is made to find the first ASCII non-identifier character …
  2. The entire UTF-8 string is passed to a function to normalize the string to NFKC, and then verify that it follows the identifier syntax. …

solve

以下を送信する

eⅺt()