본문 바로가기
1-5. 코딩테스트 문제집(삼성 SW Expert Academy)/SWEA(D1)

[SWEA] D1: 알파벳을 숫자로 변환(2050) 해설

by cogito21_cpp 2025. 1. 12.
반응형

문제

- 문제 링크: 알파벳을 숫자로 변환

 

풀이

(C++)

solution 1)

- 시간 복잡도: 

더보기
#include<iostream>
#include <string>

using namespace std;

int main(int argc, char** argv)
{
	int test_case;
	int T;

    string text;
    cin >> text;
    for (int i = 0; i < text.length(); ++i) {
        cout << text[i] - 64 << " ";
    }
	return 0;
}

 

(Java)

solution 1)

- 시간 복잡도: 

더보기
import java.util.*

 

(Python)

solution 1)

- 시간 복잡도: 

더보기
import sys

text = input()
for i in text:
    print(ord(i) -64, end=" ")

 

반응형