Skip to content

Commit

Permalink
[BOJ] 2480
Browse files Browse the repository at this point in the history
  • Loading branch information
heerucan committed Apr 14, 2022
1 parent 1c25fc0 commit c8001f4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Empty file added BOJ/1003.py
Empty file.
16 changes: 16 additions & 0 deletions BOJ/2480.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
a, b, c = list(map(int, input().split()))
data = []
data.append(a)
data.append(b)
data.append(c)

if a == b == c:
print(10000+a*1000)
elif a == b:
print(1000+a*100)
elif a == c:
print(1000 + a * 100)
elif b == c:
print(1000 + b * 100)
else:
print(max(data) * 100)

0 comments on commit c8001f4

Please sign in to comment.