Skip to content

Commit

Permalink
[Bronze V] Title: 아스키 코드, Time: 44 ms, Memory: 31120 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jun 21, 2024
1 parent d1a90fb commit 677e8f3
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
28 changes: 28 additions & 0 deletions 백준/Bronze/11654. 아스키 코드/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# [Bronze V] 아스키 코드 - 11654

[문제 링크](https://www.acmicpc.net/problem/11654)

### 성능 요약

메모리: 31120 KB, 시간: 44 ms

### 분류

구현

### 제출 일자

2024년 5월 28일 17:58:31

### 문제 설명

<p>알파벳 소문자, 대문자, 숫자 0-9중 하나가 주어졌을 때, 주어진 글자의 아스키 코드값을 출력하는 프로그램을 작성하시오.</p>

### 입력

<p>알파벳 소문자, 대문자, 숫자 0-9 중 하나가 첫째 줄에 주어진다.</p>

### 출력

<p>입력으로 주어진 글자의 아스키 코드 값을 출력한다.</p>

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
a = input()

print(ord(a))

0 comments on commit 677e8f3

Please sign in to comment.