diff --git a/code_study/Baekjoon/python/3059.py b/code_study/Baekjoon/python/3059.py new file mode 100644 index 0000000..93540bf --- /dev/null +++ b/code_study/Baekjoon/python/3059.py @@ -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))) \ No newline at end of file