본문 바로가기

전체 글

백준_1453번 피시방 알바 문제와 입출력 조건은 다음과 같다. 101개 배열을 만들어서 0으로 초기화0은 빈자리, 1은 찬 자리손님이 원하는 자리가 0이면 1,1이면 거절 카운트를 1 증가거절 카운트 출력  def count_rejected_customers(N, seats_wanted): pc_seats = [0] * 101 rejected = 0 for seat in seats_wanted: # 자리 차있으면 거절 if pc_seats[seat] == 1: rejected += 1 # 비어있으면 자리 겟챠.. else: pc_seats[seat] = 1 return rejecteddef m.. 더보기
백준_1547번 공 문제와 입출력 조건은 다음과 같다.처음에 3개의 컵이 있고 1번 컵 아래에 공이 있다.두 컵의 위치를 서로 바꿀 때마다 공의 위치를 추적해야 한다.공은 컵과 함께 이동하지 않고 원래 있던 자리에 그대로 있다.  공이 몇 번 컵 아래 있는지만 알면 된다.   공이 있는 컵이 이동하면 -> 공 위치를 업데이트공이 없는 컵들끼리 이동하면 -> 아무것도 안 해도 됨  처음에 공은 1번 컵 아래에 있고 공의 현재 위치를 추적두 컵의 위치를 바꿀 때마다 공이 있는 컵이 이동하는 경우에만 현재 위치 업데이트최종 컵 번호 출력..  def find_ball_position(M, swaps): ball_position = 1 # 각각의 컵 위치 교환 for x, y in swaps: .. 더보기
드림핵_proxy-1 #!/usr/bin/python3from flask import Flask, request, render_template, make_response, redirect, url_forimport socketapp = Flask(__name__)try: FLAG = open('./flag.txt', 'r').read()except: FLAG = '[**FLAG**]'@app.route('/')def index(): return render_template('index.html')@app.route('/socket', methods=['GET', 'POST'])def login(): if request.method == 'GET': return render_template('.. 더보기
드림핵_session-basic #!/usr/bin/python3from flask import Flask, request, render_template, make_response, redirect, url_forapp = Flask(__name__)try: FLAG = open('./flag.txt', 'r').read()except: FLAG = '[**FLAG**]'users = { 'guest': 'guest', 'user': 'user1234', 'admin': FLAG}# this is our session storagesession_storage = {}@app.route('/')def index(): session_id = request.cookies.get('sessionid', None.. 더보기
Testing IoT security: The case study of an ip camera https://ieeexplore.ieee.org/abstract/document/9116392 Testing IoT Security: The Case Study of an IP CameraWhile the Internet of Things (IoT) applications and devices expanded rapidly, security and privacy of the IoT devices emerged as a major problem. Current studies reveal that there are significant weaknesses detected in several types of IoT devices moreoverieeexplore.ieee.org 연구 배경IoT 기기와 응용프.. 더보기
악성코드 분석_6주차 보호되어 있는 글입니다. 더보기
드림핵_Mango 보호되어 있는 글입니다. 더보기
드림핵_login-1 보호되어 있는 글입니다. 더보기