Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix three-coins
Browse files Browse the repository at this point in the history
  • Loading branch information
a01sa01to authored Jul 27, 2024
1 parent f126851 commit a291640
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion three-coins/PROBLEM
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pid='three-coins'

problem(
time_limit=1.0,
time_limit=2.0,
id=pid,
title="Three Coins",
)
4 changes: 2 additions & 2 deletions three-coins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
この問題には部分点が設定されている。
以下の条件を満たすテストケースすべてに正解した場合、記載された点数が得られる。

- (1 点) $N \le 200$
- (99 点) 追加の制約はない。
- (10 点) $N \le 200$
- (90 点) 追加の制約はない。

## 入力

Expand Down
2 changes: 1 addition & 1 deletion three-coins/sol-cpp-partial1/SOLUTION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8; mode: python -*-
cxx_solution(src='main.cc', flags=["-std=c++2a", "-O2"], challenge_cases=["*_all.in"])
expected_score(1)
expected_score(10)
2 changes: 1 addition & 1 deletion three-coins/sol-cpy-partial1/SOLUTION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8; mode: python -*-
script_solution(src='main.py', challenge_cases=["*_all.in"])
expected_score(1)
expected_score(10)
2 changes: 1 addition & 1 deletion three-coins/sol-pypy-partial1/SOLUTION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8; mode: python -*-
script_solution(src='main.py', challenge_cases=["*_all.in"])
expected_score(1)
expected_score(10)
4 changes: 2 additions & 2 deletions three-coins/tests/TESTSET
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
cxx_validator(src='validator.cc', dependency=['testlib.h'], flags=["-std=c++2a", "-O2"])
cxx_judge(src='judge.cc', dependency=['testlib.h'], variant=testlib_judge_runner, flags=["-std=c++2a", "-O2"])
id='three-coins'
subtask_testset(name='Task 1', score=1, input_patterns=['*_task1.in'])
subtask_testset(name='All', score=99, input_patterns=['*_all.in'])
subtask_testset(name='Task 1', score=10, input_patterns=['*_task1.in'])
subtask_testset(name='All', score=90, input_patterns=['*_all.in'])

0 comments on commit a291640

Please sign in to comment.