aboutsummaryrefslogtreecommitdiffhomepage
path: root/archive/q/base32/a/68/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'archive/q/base32/a/68/index.html')
-rw-r--r--archive/q/base32/a/68/index.html144
1 files changed, 144 insertions, 0 deletions
diff --git a/archive/q/base32/a/68/index.html b/archive/q/base32/a/68/index.html
new file mode 100644
index 0000000..48ce6c3
--- /dev/null
+++ b/archive/q/base32/a/68/index.html
@@ -0,0 +1,144 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>問題 #2 - 回答 #68 | Albatross.PHP</title>
+ <link rel="stylesheet" href="../../../../assets/index.css">
+ <link rel="icon" type="image/svg+xml" href="../../../../assets/favicon.svg">
+ <script type="module" src="../../../../assets/index.js"></script>
+ </head>
+ <body>
+ <header class="container">
+ <nav class="navbar">
+ <a class="navbar-brand" href="../../../../index.html">Albatross.PHP</a>
+ </nav>
+ </header>
+ <main class="container mt-5">
+ <h1 class="mb-4">問題 #2 - 回答 #68</h1>
+ <nav>
+ <ol class="breadcrumb">
+ <li class="breadcrumb-item"><a href="../../../../index.html">問題一覧</a></li>
+ <li class="breadcrumb-item"><a href="../../index.html">Base32</a></li>
+ <li class="breadcrumb-item"><a href="../index.html">回答一覧</a></li>
+ <li class="breadcrumb-item active">#68</li>
+ </ol>
+ </nav>
+
+ <h2>Base32</h2>
+ <p>
+ RFC 4648 で定義された Base32 エンコーディングを実装してください。
+標準入力から与えられる各行に対し、Base32 エンコードをおこなった文字列を標準出力へ改行区切りで出力してください。
+なお、アルファベットの出力には大文字を用いてください。
+ </p>
+ <h2>回答 #68</h2>
+ <p>
+ oogFranz が 2024-03-08 11:16:28 に投稿
+ </p>
+ <h2>コード</h2>
+ <p>
+ 203 byte
+ </p>
+ <pre><code class="hljs language-php">&lt;?$t=str_split(&#039;ABCDEFGHIJKLMNOPQRSTUVWXYZ234567&#039;);while($l=fgets(STDIN)){for($b=&#039;&#039;;$c=ord($l[$i++]);)$b.=str_pad(decbin($c),8,0,0);echo str_replace(&#039;=&#039;,&#039;&#039;,chunk_split(strtr($b,&#039;01&#039;,$t),8,&#039;======&#039;)).&quot;\n&quot;;}</code></pre>
+ <h2>実行結果</h2>
+ <div class="js-phper-token">
+ </div>
+ <div class="mt-3">
+ ステータス: <span class="js-aggregated-execution-status" data-answer-id="205">失敗</span>
+ </div>
+ <div class="mt-3">
+ <h3>テストケース 1</h3>
+ <div>
+ ステータス: <span class="js-testcase-execution-status" data-testcase-execution-id="492">実行時エラー</span>
+ </div>
+ <h4>標準出力</h4>
+ <pre><code class="js-testcase-execution-stdout hljs language-plaintext" data-testcase-execution-id="492">
+Warning: Undefined variable $i in php.wasm code on line 6
+
+Warning: String offset cast occurred in php.wasm code on line 6
+
+Warning: Uninitialized string offset 5 in php.wasm code on line 6
+
+Fatal error: Uncaught TypeError: strtr(): Argument #3 ($to) must be of type ?string, array given in php.wasm code:6
+Stack trace:
+#0 php.wasm code(6): strtr(&#039;011010000110111...&#039;, &#039;01&#039;, Array)
+#1 {main}
+ thrown in php.wasm code on line 6
+
+</code></pre>
+ <h4>標準エラー出力</h4>
+ <pre><code class="js-testcase-execution-stderr hljs language-plaintext" data-testcase-execution-id="492">
+</code></pre>
+ <h3>テストケース 2</h3>
+ <div>
+ ステータス: <span class="js-testcase-execution-status" data-testcase-execution-id="493">実行時エラー</span>
+ </div>
+ <h4>標準出力</h4>
+ <pre><code class="js-testcase-execution-stdout hljs language-plaintext" data-testcase-execution-id="493">
+Warning: Undefined variable $i in php.wasm code on line 6
+
+Warning: String offset cast occurred in php.wasm code on line 6
+
+Warning: Uninitialized string offset 16 in php.wasm code on line 6
+
+Fatal error: Uncaught TypeError: strtr(): Argument #3 ($to) must be of type ?string, array given in php.wasm code:6
+Stack trace:
+#0 php.wasm code(6): strtr(&#039;111000111000000...&#039;, &#039;01&#039;, Array)
+#1 {main}
+ thrown in php.wasm code on line 6
+
+</code></pre>
+ <h4>標準エラー出力</h4>
+ <pre><code class="js-testcase-execution-stderr hljs language-plaintext" data-testcase-execution-id="493">
+</code></pre>
+ <h3>テストケース 3</h3>
+ <div>
+ ステータス: <span class="js-testcase-execution-status" data-testcase-execution-id="494">実行時エラー</span>
+ </div>
+ <h4>標準出力</h4>
+ <pre><code class="js-testcase-execution-stdout hljs language-plaintext" data-testcase-execution-id="494">
+Warning: Undefined variable $i in php.wasm code on line 6
+
+Warning: String offset cast occurred in php.wasm code on line 6
+
+Warning: Uninitialized string offset 8 in php.wasm code on line 6
+
+Fatal error: Uncaught TypeError: strtr(): Argument #3 ($to) must be of type ?string, array given in php.wasm code:6
+Stack trace:
+#0 php.wasm code(6): strtr(&#039;001100010011001...&#039;, &#039;01&#039;, Array)
+#1 {main}
+ thrown in php.wasm code on line 6
+
+</code></pre>
+ <h4>標準エラー出力</h4>
+ <pre><code class="js-testcase-execution-stderr hljs language-plaintext" data-testcase-execution-id="494">
+</code></pre>
+ <h3>テストケース 4</h3>
+ <div>
+ ステータス: <span class="js-testcase-execution-status" data-testcase-execution-id="495">実行時エラー</span>
+ </div>
+ <h4>標準出力</h4>
+ <pre><code class="js-testcase-execution-stdout hljs language-plaintext" data-testcase-execution-id="495">
+Warning: Undefined variable $i in php.wasm code on line 6
+
+Warning: String offset cast occurred in php.wasm code on line 6
+
+Warning: Uninitialized string offset 6 in php.wasm code on line 6
+
+Fatal error: Uncaught TypeError: strtr(): Argument #3 ($to) must be of type ?string, array given in php.wasm code:6
+Stack trace:
+#0 php.wasm code(6): strtr(&#039;011000010010000...&#039;, &#039;01&#039;, Array)
+#1 {main}
+ thrown in php.wasm code on line 6
+
+</code></pre>
+ <h4>標準エラー出力</h4>
+ <pre><code class="js-testcase-execution-stderr hljs language-plaintext" data-testcase-execution-id="495">
+</code></pre>
+ </div>
+ <script type="module" src="../../../../assets/loading.js"></script>
+ </main>
+ <footer class="container text-center mt-5 mb-4">
+ Albatross.PHP - PHPerKaigi 2024
+ </footer>
+ </body>
+</html>