問題 #3 - 回答 #74
Brainf*ck
Brainf*ck を実装してください。標準入力から Brainf*ck のソースコードが渡されます。Brainf*ck の仕様のうち、入力命令である「,」は未実装で構いません。 一部明確に挙動が定められていない部分については、以下の仕様とします。 メモリの各セルは 8 bit の符号なし整数です。今回の入力でオーバーフローは発生しません。 メモリのアドレスは非負整数です。今回の入力で負のアドレスへポインタを動かすことはありません。 Brainf*ck に存在する命令以外の文字を受け取った場合は無視してください。 今回の入力に不正なプログラムは含まれません。すなわち、「[」と「]」は必ず釣り合っています。
回答 #74
tadsan が 2024-03-09 04:37:26 に投稿
コード
342 byte
$s=fread(STDIN,INF);for($c=$p=0;$c<strlen($s);$c++){$m[$p]??=0;switch($s[$c]){case'>':$p++;break;case'<':$p--;break;case'+':$m[$p]++;break;case'-':$m[$p]--;break;case'.':echo chr($m[$p]);break;case'[':if(!$m[$p])for($d=1;$d>0;)$s[++$c]=='['?$d++:$s[$c]==']'&&$d--;break;case']':if($m[$p])for($d=1;$d>0;)$s[--$c]==']'?$d++:$s[$c]=='['&&$d--;}}
実行結果
ステータス: 失敗
テストケース 1
ステータス: 実行時エラー
標準出力
Fatal error: Uncaught TypeError: fread(): Argument #2 ($length) must be of type int, float given in php.wasm code:6
Stack trace:
#0 php.wasm code(6): fread(Resource id #2, INF)
#1 {main}
thrown in php.wasm code on line 6
標準エラー出力
テストケース 2
ステータス: 実行時エラー
標準出力
Fatal error: Uncaught TypeError: fread(): Argument #2 ($length) must be of type int, float given in php.wasm code:6
Stack trace:
#0 php.wasm code(6): fread(Resource id #2, INF)
#1 {main}
thrown in php.wasm code on line 6
標準エラー出力
テストケース 3
ステータス: 実行時エラー
標準出力
Fatal error: Uncaught TypeError: fread(): Argument #2 ($length) must be of type int, float given in php.wasm code:6
Stack trace:
#0 php.wasm code(6): fread(Resource id #2, INF)
#1 {main}
thrown in php.wasm code on line 6
標準エラー出力