baekjoon 20260223
This commit is contained in:
parent
89a2ea017d
commit
f554472226
9
code_study/Baekjoon/python/3059.py
Normal file
9
code_study/Baekjoon/python/3059.py
Normal file
@ -0,0 +1,9 @@
|
||||
ans = []
|
||||
|
||||
for _ in range(int(input())) :
|
||||
s, t = set(input()), 2015
|
||||
for c in s :
|
||||
t -= ord(c)
|
||||
ans.append(t)
|
||||
|
||||
print('\n'.join(map(str, ans)))
|
||||
Loading…
x
Reference in New Issue
Block a user