질문 검색 보고 알았다... www.base64decode.org/ Base64 Decode and Encode - Online Decode from Base64 or Encode to Base64 with advanced formatting options. Enter our site for an easy-to-use online tool. www.base64decode.org https://startlink.io/ 스타트링크 (Startlink) 0 Days 0 Lectures 0 Members 0 Services startlink.io text로 넣었음~!
www.acmicpc.net/problem/10162 10162번: 전자레인지 3개의 시간조절용 버튼 A B C가 달린 전자레인지가 있다. 각 버튼마다 일정한 시간이 지정되어 있어 해당 버튼을 한번 누를 때마다 그 시간이 동작시간에 더해진다. 버튼 A, B, C에 지정된 시간은 www.acmicpc.net T = int(input()) a = 0 b = 0 c = 0 if T % 10 != 0: print("-1") else: if T // 300 > 0: a = T // 300 T = T % 300 if T // 60 > 0: b = T // 60 T = T % 60 if T // 10 > 0: c = T // 10 T = T % 10 print(a, b, c)
www.acmicpc.net/problem/1157 1157번: 단어 공부 알파벳 대소문자로 된 단어가 주어지면, 이 단어에서 가장 많이 사용된 알파벳이 무엇인지 알아내는 프로그램을 작성하시오. 단, 대문자와 소문자를 구분하지 않는다. www.acmicpc.net import operator sen = input().lower() sto = {} for i in range(len(sen)): if ord(sen[i]) in sto: sto[ord(sen[i])] += 1 else: sto[ord(sen[i])] = 1 fmk = max(sto.items(), key=operator.itemgetter(1))[0] fmv = max(sto.items(), key=operator.itemgetter(1))[..
www.acmicpc.net/problem/3449 3449번: 해밍 거리 입력을 여러 개의 테스트 케이스로 이루어져 있다. 첫째 줄에는 테스트 케이스의 개수 T가 주어진다. 각 테스트 케이스는 두 줄로 이루어져 있다. 각 줄에는 이진수가 하나씩 주어진다. 두 이진 www.acmicpc.net www.ktword.co.kr/abbr_view.php?m_temp1=3937 해밍중 [정보통신기술용어해설] www.ktword.co.kr N = int(input()) cnt = int() for i in range(N * 2): if (i + 1) % 2 == 0: num = "" num2 = "" else: num = input() num2 = input() for i in range(len(num)): # ..
www.acmicpc.net/problem/2845 2845번: 파티가 끝나고 난 뒤 파티가 끝나고 나면, 사람들은 누가 파티에 왔는지와 얼마나 많은 사람들이 왔는지를 궁금해한다. 보통 파티는 매우 크게 열리기 때문에, 정확하게 몇 명이 참가했는지 알 수가 없다. 지난주 토 www.acmicpc.net p = [0 for i in range(5)] n, a = input().split() p[0], p[1], p[2], p[3], p[4] = input().split() people = int(n) * int(a) for i in range(5): print(int(p[i]) - people, end=" ")
python s = input() res = [str(-1) for i in range(26)] for ch in s: res[ord(ch) - 97] = str(s.find(ch)) print(" ".join(res)) c int main(void){ char str[101]; int chk[26] = {0, }, length, i; for(i = 0; i < 26; i++) chk[i] = -1; scanf("%s", str); length = strlen(str); for(i = 0; i < length; i++){ if(chk[str[i] - 97] == -1) chk[str[i] - 97] = i; } for(i = 0; i < 26; i++) printf("%d ", chk[i]); retur..
N = input() if N[0] == '0': if N[1] == 'x': print((int(N[2:], 16))) else: print(int(N[1:], 8)) else: print(N) https://www.acmicpc.net/problem/11816 11816번: 8진수, 10진수, 16진수 첫째 줄에 X가 주어진다. X는 10진수로 바꿨을 때, 1,000,000보다 작거나 같은 자연수이다. 16진수인 경우 알파벳은 소문자로만 이루어져 있다. www.acmicpc.net
import array _, _ = input().split(' ') x = list(map(int, input().split())) y = list(map(int, input().split())) res = sorted(x + y) print(' '.join(str(x) for x in res)) https://www.acmicpc.net/problem/11728 11728번: 배열 합치기 첫째 줄에 배열 A의 크기 N, 배열 B의 크기 M이 주어진다. (1 ≤ N, M ≤ 1,000,000) 둘째 줄에는 배열 A의 내용이, 셋째 줄에는 배열 B의 내용이 주어진다. 배열에 들어있는 수는 절댓값이 109보다 작거나 같은 정수이다. www.acmicpc.net
x, y = input().split(' ') print(int(str(int(x[::-1]) + int(y[::-1]))[::-1])) https://www.acmicpc.net/problem/1357 1357번: 뒤집힌 덧셈 어떤 수 X가 주어졌을 때, X의 모든 자리수가 역순이 된 수를 얻을 수 있다. Rev(X)를 X의 모든 자리수를 역순으로 만드는 함수라고 하자. 예를 들어, X=123일 때, Rev(X) = 321이다. 그리고, X=100일 때, Rev(X) = 1이다. 두 양의 정수 X와 Y가 주어졌을 때, Rev(Rev(X) + Rev(Y))를 구하는 프로그램을 작성하시오 www.acmicpc.net
Contact: j0n9m1n1@gmail.com