일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 사칙연산
- Incognito
- SuNiNaTas
- 인코그니토
- Forensics
- HackCTF
- 그리디 알고리즘
- Text
- Digital Forensics
- 백준
- wargame
- 문자열
- 정렬
- N0Named
- Python
- 구현
- cryptography
- 수학
- MySQL
- writeup
- Web Hacking
- php
- misc
- CTF
- 써니나타스
- Web
- C
- Network
- Database
- xcz.kr
- Today
- Total
목록문자열 (45)
보안을 그리다, 훈이
[Baekjoon/Python3] 9012번 괄호 www.acmicpc.net/problem/9012 9012번: 괄호 괄호 문자열(Parenthesis String, PS)은 두 개의 괄호 기호인 ‘(’ 와 ‘)’ 만으로 구성되어 있는 문자열이다. 그 중에서 괄호의 모양이 바르게 구성된 문자열을 올바른 괄호 문자열(Valid PS, VPS)이라고 www.acmicpc.net t = int(input()) for i in range(t): s = list(input()) cnt = 0 for j in s: if j == '(': cnt += 1 elif j == ')': cnt -= 1 if cnt 0: print('NO') elif cnt == ..
[Baekjoon/Python3] 17863번 FYI www.acmicpc.net/problem/17863 17863번: FYI In the United States of America, telephone numbers within an area code consist of 7 digits: the prefix number is the first 3 digits and the line number is the last 4 digits. Traditionally, the 555 prefix number has been used to provide directory informatio www.acmicpc.net s = input() if s[:3] == '555': print('YES') else: pri..
[Baekjoon/Python3] 17350번 2루수 이름이 뭐야 www.acmicpc.net/problem/17350 17350번: 2루수 이름이 뭐야 선수들 중 뭐(anj)라는 이름을 가진 사람이 있으면 "뭐야;"를, 없으면 "뭐야?"를 출력한다. www.acmicpc.net players = [input() for i in range(int(input()))] if 'anj' in players: print('뭐야;') else: print('뭐야?')
[Baekjoon/Python3] 15904번 UCPC는 무엇의 약자일까? www.acmicpc.net/problem/15904 15904번: UCPC는 무엇의 약자일까? 첫 번째 줄에 알파벳 대소문자, 공백으로 구성된 문자열이 주어진다. 문자열의 길이는 최대 1,000자이다. 문자열의 맨 앞과 맨 끝에 공백이 있는 경우는 없고, 공백이 연속해서 2번 이상 주어지는 www.acmicpc.net 처음 문제를 읽었을 때, 문자열의 대문자만 필터링 한 값이 'UCPC'인지, 아닌지를 구하는 문제로 인식했고 아래 코드를 제출했다. s = input() u = '' alp = [chr(i) for i in range(65, 91)] for i in s: if i in alp: u += i if u == 'UCPC..
[Baekjoon/Python3] 15813번 너의 이름은 몇 점이니? www.acmicpc.net/problem/15813 15813번: 너의 이름은 몇 점이니? 첫 번째 줄에 이름의 길이가 주어진다. (단, 길이는 100자 이하이다) 두 번째 줄에 이름이 띄어쓰기 없이 대문자로 주어진다. www.acmicpc.net n = int(input()) total = 0 for i in input(): total += ord(i) - 64 print(total)
[Baekjoon/Python3] 14490번 백대열 www.acmicpc.net/problem/14490 14490번: 백대열 n과 m이 :을 사이에 두고 주어진다. (1
[Baekjoon/Python3] 14425번 문자열 집합 www.acmicpc.net/problem/14425 14425번: 문자열 집합 첫째 줄에 문자열의 개수 N과 M (1 ≤ N ≤ 10,000, 1 ≤ M ≤ 10,000)이 주어진다. 다음 N개의 줄에는 집합 S에 포함되어 있는 문자열들이 주어진다. 다음 M개의 줄에는 검사해야 하는 문자열들이 주어 www.acmicpc.net # 시간 : 4536ms n, m = map(int, input().split()) num = 0 s = [input() for i in range(n)] for j in range(m): if input() in s: num += 1 print(num) # 시간 : 3800ms import sys n, m = map(i..
[Baekjoon/Python3] 13985번 Equality www.acmicpc.net/problem/13985 13985번: Equality Print, on a single line, YES if the sum is correct; otherwise, print NO. www.acmicpc.net a, b = input().split('=') if eval(a) == int(b): print('YES') else: print('NO')
[Baekjoon/Python3] 13505번 두 수 XOR www.acmicpc.net/problem/13505 13505번: 두 수 XOR N개의 수가 주어졌을 때, XOR한 값이 가장 큰 두 수를 찾는 프로그램을 작성하시오. 즉, A1, A2, ..., AN 중에서 i ≠ j이면서 Ai XOR Aj 가 가장 큰 것을 찾아야 한다. www.acmicpc.net [Python3] - [C++] #include #include int integerarr[100001]; char bit[33]; //trei의 한 노드를 나타내는 객체 typedef struct TrieNode { TrieNode* node[2]; //종료 노드인가? bool finish; TrieNode() : finish(false) {..
[Baekjoon/Python3] 13420번 사칙연산 www.acmicpc.net/problem/13420 13420번: 사칙연산 사칙연산은 덧셈, 뺄셈, 곱셈, 나눗셈으로 이루어져 있으며, 컴퓨터 프로그램에서 이를 표현하는 기호는 +, -, *, / 와 같다. 아래는 컴퓨터 프로그램에서 표현한 사칙 연산의 예제이다. 3 * 2 = 6 문 www.acmicpc.net for i in range(int(input())): a, b = input().split('=') if eval(a) == int(b): # eval('str') : compute