質問


問題名 ユーザ名 質問 回答 全体公開 投稿日時 最終更新日時
B - Torus Loop mshcherba
>The following placement does not satisfy the condition. Specifically, while there is no line segment whose endpoint is the midpoint of the right edge of the tile in cell (1,3), there is a line segment whose endpoint is the midpoint of the left edge of the tile in cell (1,1), so the condition is not satisfied.

Probably, it should be (0, 2) instead of  (1, 3), and (0, 0) instead of (1, 1), since it's 0-indexing.
Thanks, we fixed the statement.  / 問題文を修正しました。
誤:次の配置方法は条件を満たしません。具体的には、マス (1,3) のタイルの右辺の中点を端点とする線分が存在しないのに対し、マス (1,1) のタイルの左辺の中点を端点とする線分は存在するので、条件を満たしません。
正:次の配置方法は条件を満たしません。具体的には、マス (0,2) のタイルの右辺の中点を端点とする線分が存在しないのに対し、マス (0,0) のタイルの左辺の中点を端点とする線分は存在するので、条件を満たしません。
Yes