매일 조금씩

백준 5218번: 알파벳 거리 본문

알고리즘

백준 5218번: 알파벳 거리

mezo 2020. 2. 16. 20:24
728x90
반응형

 

 

 

 

 

 

 

 

#include <iostream>
#include <string>
using namespace std;

int main(void) {
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	int n;
	cin >> n;

	for (int i = 0; i < n; i++) {

		string A, B;
		cin >> A >> B;

		cout << "Distances: ";

		for (int j = 0; j < A.length(); j++) {

			int y = B[j] - '0';

			int x = A[j] - '0';

			if (y - x >= 0)

				cout << y - x << " ";

			else

				cout << y - x + 26 << " ";
			
		}

		cout << endl;
	}

	return 0;
}
728x90
반응형

'알고리즘' 카테고리의 다른 글

백준 1976번: 여행 가자  (0) 2020.03.08
백준 1717번: 집합의 표현  (0) 2020.03.08
백준 5555번: 반지  (0) 2020.02.16
백준 5598번: 카이사르 암호  (0) 2020.02.12
백준 11656번: 접미사 배열  (0) 2020.02.11