From f554472226a4a2f66f6374818826918d9bf93078 Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Mon, 23 Feb 2026 23:07:21 +0900 Subject: [PATCH] baekjoon 20260223 --- code_study/Baekjoon/python/3059.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code_study/Baekjoon/python/3059.py 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