0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ABC170 C - Forbidden List を解いた

Posted at

abc170c_1.png
abc170c_2.png
abc170c_3.png

正とは限らない らしいので、
マイナスも入れて for 文を回してみた。

abc170c.py
X,N = map(int,input().split())
P = list(map(int,input().split()))
P = set(P)

num = float("inf")
ans = 0
for i in range(-201,201):
    diff = abs(X-i)
    if i not in P:
       if diff < num:
           ans = i
           num = diff

print(ans)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?