baekjoon 20260223

This commit is contained in:
songyc macbook 2026-02-23 23:07:21 +09:00
parent 89a2ea017d
commit f554472226

View 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)))