aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-18 22:30:11 +0900
committernsfisis <nsfisis@gmail.com>2025-03-18 22:30:11 +0900
commitf1d931dad3dd69a0d81f497dd6a30fbf8557b268 (patch)
tree552c617ecae5d3b96b0d9b72a8ccbe57947bdb2b
parentab78224a0a800bc0266d91a219aae4b766c7efe7 (diff)
downloadphperkaigi-2025-albatross-f1d931dad3dd69a0d81f497dd6a30fbf8557b268.tar.gz
phperkaigi-2025-albatross-f1d931dad3dd69a0d81f497dd6a30fbf8557b268.tar.zst
phperkaigi-2025-albatross-f1d931dad3dd69a0d81f497dd6a30fbf8557b268.zip
feat(frontend): update player notice
-rw-r--r--frontend/app/components/Gaming/Problem.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/frontend/app/components/Gaming/Problem.tsx b/frontend/app/components/Gaming/Problem.tsx
index 460bc85..e2f1487 100644
--- a/frontend/app/components/Gaming/Problem.tsx
+++ b/frontend/app/components/Gaming/Problem.tsx
@@ -22,7 +22,12 @@ export default function Problem({ title, description, sampleCode }: Props) {
</BorderedContainerWithCaption>
<BorderedContainerWithCaption caption="スコア計算・PHP 環境">
<div className="text-gray-700 flex flex-col gap-2">
- <p>スコアはコード中の全 ASCII 空白文字を除去した後のバイト数です。</p>
+ <p>
+ スコアはコード中の全 ASCII
+ 空白文字を除去した後のバイト数です。また、先頭や末尾に置かれた PHP
+ タグ (<InlineCode code="<?php" />、<InlineCode code="<?" />、
+ <InlineCode code="?>" />) はカウントされません。
+ </p>
<p>
同じスコアを出した場合、より提出が早かったプレイヤーの勝ちとなります。
</p>