일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xcz.kr
- HackCTF
- MySQL
- wargame
- php
- 구현
- misc
- 정렬
- SuNiNaTas
- C
- 백준
- N0Named
- 써니나타스
- Web
- Python
- Incognito
- Web Hacking
- Digital Forensics
- CTF
- 수학
- Network
- cryptography
- 인코그니토
- 그리디 알고리즘
- Text
- 문자열
- Forensics
- Database
- 사칙연산
- writeup
- Today
- Total
목록구현 (150)
보안을 그리다, 훈이
[Baekjoon/Python3] 19944번 뉴비의 기준은 뭘까? www.acmicpc.net/problem/19944 19944번: 뉴비의 기준은 뭘까? 2020 INPC는 IGRUS 뉴비들을 위해 열리는 대회입니다. 하지만 영수 할아버지나 인용 할아버지와 같이 14학번이지만 마음만은 뉴비인 어르신들 때문에 대회장이 TLE들의 파티가 되자 뉴비의 기준을 정 www.acmicpc.net n, m = map(int, input().split()) if m == 1 or m == 2: print('NEWBIE!') elif m
[Baekjoon/Python3] 18411번 試験 www.acmicpc.net/problem/18411 18411번: 試験 JOI 君は情報の試験を 3 回受けた.試験の点数はすべて 0 以上 100 以下の整数である. JOI 君の成績は 3 回の試験の点数のうち高い方から 2 つを足し合わせた合計によって決まる. 3 回 www.acmicpc.net print(sum(sorted(list(map(int, input().split())))[1:]))
[Baekjoon/Python3] 18301번 Rats www.acmicpc.net/problem/18301 18301번: Rats To celebrate the Lunar New Year of the Rat, Douglas decides to count the number of rats living in his area. It is impossible for him to find all rats, as they tend to be well hidden. However, on the first day of the new year, Douglas manages to capture n1 www.acmicpc.net import math n1, n2, n12 = map(int, input().split()) ..
[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] 17388번 와글와글 숭고한 www.acmicpc.net/problem/17388 17388번: 와글와글 숭고한 첫 번째 줄에 숭실대학교의 참여도, 고려대학교의 참여도, 한양대학교의 참여도를 의미하는 세 자연수 S, K, H가 공백으로 구분되어 주어진다. (0 ≤ S, K, H ≤ 100) 세 대학의 참여도는 모두 다르다. www.acmicpc.net s, k, h = map(int, input().split()) if s + k + h >= 100: print('OK') else: if min(s, k, h) == s: print('Soongsil') elif min(s, k, h) == k: print('Korea') else: print('Hanyang')
[Baekjoon/Python3/Text] 17295번 엔드게임 스포일러 www.acmicpc.net/problem/17295 17295번: 엔드게임 스포일러 《어벤져스: 엔드게임》(영어: Avengers: Endgame)은 2019년 개봉한 미국의 슈퍼히어로 영화로, 마블 코믹스의 동명 팀을 원작으로 하고 있으며, 마블 스튜디오가 제작하고, 월트 디즈니 스튜디오 www.acmicpc.net [Python3] print('Avengers: Endgame') [Text] Avengers: Endgame
[Baekjoon/Python3] 17294번 귀여운 수~ε٩(๑> ₃ 17294번: 귀여운 수~ε٩(๑> ₃ ₃ ₃ ₃
[Baekjoon/Python3] 16204번 카드 뽑기 www.acmicpc.net/problem/16204 16204번: 카드 뽑기 첫째 줄에 N, M, K가 주어진다. (1 ≤ N ≤ 1,000,000, 0 ≤ M, K ≤ N) www.acmicpc.net n, m, k = map(int, input().split()) print(min(m, k) + min(n - m, n - k))
[Baekjoon/Python3] 15963번 CASIO www.acmicpc.net/problem/15963 15963번: CASIO 카시오 계산기는 만능 계산기이다. 시험을 한 번이라도 쳐본 일곽인이라면, 이 카시오의 소중함에 대해서 뼈저리게 느껴보았을 것이다. 하지만, 이런 카시오에도 함정이 있다. 바로, 카시오 계 www.acmicpc.net '송찬이가 원한 배터리면 1을, 그 외엔 0을 출력한다.'라고 한다. 승찬이가 필요한 배터리 N과 선생님이 가져온 배터리 M 입력값이 같으면 1, 다르면 0을 출력하도록 구현하면 된다. n, m = map(int, input().split()) if n == m: print(1) else: print(0)
[Baekjoon/Python3] 15781번 헬멧과 조끼 www.acmicpc.net/problem/15781 15781번: 헬멧과 조끼 입력의 첫째 줄에 맵에 존재하는 헬멧의 개수 N(N은 1000이하의 자연수)과 조끼의 개수 M(M은 1000이하의 자연수)이 주어진다. 둘째 줄에 각 헬멧의 방어력 h[i] (h[i]는 10억 이하의 자연수)가 N개 만큼 www.acmicpc.net n, m = map(int, input().split()) n_dfs = list(map(int, input().split())) m_dfs = list(map(int, input().split())) print(max(n_dfs) + max(m_dfs))