From 54c3a6066d4efb7e591214cf881a354fec330eec Mon Sep 17 00:00:00 2001 From: kirameku26 Date: Mon, 15 Jun 2026 20:32:38 +0900 Subject: [PATCH 1/2] Fix list points to display as integers instead of decimals --- atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx b/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx index e49e6b85b..0761ef3a5 100644 --- a/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx +++ b/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx @@ -356,7 +356,7 @@ export const ListTable: React.FC = (props) => { if (point >= INF_POINT) { return

-

; } else { - if (point % 100 === 0) { + if (point % 1 === 0) { return

{point}

; } else { return

{point.toFixed(2)}

; From 3deded55fb71a7a5993b6eaf86c9a48a5b217f37 Mon Sep 17 00:00:00 2001 From: kirameku26 Date: Tue, 16 Jun 2026 17:17:24 +0900 Subject: [PATCH 2/2] =?UTF-8?q?point=E3=81=8C=E5=B0=8F=E6=95=B0=E3=81=AE?= =?UTF-8?q?=E5=A0=B4=E5=90=88=E3=81=AF=E3=81=AA=E3=81=84=E3=81=AE=E3=81=A7?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx b/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx index 0761ef3a5..19c4efefb 100644 --- a/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx +++ b/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx @@ -356,11 +356,7 @@ export const ListTable: React.FC = (props) => { if (point >= INF_POINT) { return

-

; } else { - if (point % 1 === 0) { - return

{point}

; - } else { - return

{point.toFixed(2)}

; - } + return

{point}

; } }, },