Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

New puzzle from Codeforces Problem 467 A #12

Open
Labels
@akalai

Description

def sat(ans: List[List[int]]):
 """
 Find a list of lists of two integers where the number of pairs in which the second number is more than
 two greater than the first number is a given constant

 Inspired by [Codeforces Problem 467 A](https://codeforces.com/problemset/problem/467/A)
 """
 target = 17
 for i in range(len(ans)):
 a, b = ans[i]
 if b - a >= 2:
 target -= 1
 return target == 0

Solvers, post your solutions in the comments using the following formatting:

<details><summary>Reveal solution</summary>
```python
def sol():
 return "world" # replace with your solution
```
</details>

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions

        AltStyle によって変換されたページ (->オリジナル) /