python N = int(input()) equip = list() res = list() for i in range(N): hp, mp, _str, _def, *equip = map(int, input().split()) res = [hp + equip[0], mp + equip[1], _str + equip[2], _def + equip[3]] if res[0] < 1: res[0] = 1 if res[1] < 1: res[1] = 1 if res[2] < 0: res[2] = 0 power = 1 * res[0] + 5 * res[1] + 2 * res[2] + 2 * res[3] print(power) https://www.acmicpc.net/problem/12790 12790번: Mini F..
pypy3 N = int(input()) arr = list() for i in range(N): arr.append(int(input())) for n in sorted(dict.fromkeys(arr)): print(n) https://www.acmicpc.net/problem/2751 2751번: 수 정렬하기 2 첫째 줄에 수의 개수 N(1 ≤ N ≤ 1,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 숫자가 주어진다. 이 수는 절댓값이 1,000,000보다 작거나 같은 정수이다. 수는 중복되지 않는다. www.acmicpc.net
#style관련 지워도 됨, 다른 그룹웨어 안들어가봐서 되는지 모름ㅎ 0. 실행 시 tray에 등록 -트레이 우클릭 등록, 새로고침, 끝내기 1. selenium으로 gw login -bs로 로그인 못하겠음 2. driver cookie -> requests.Session에 넘겨 줌 3. Session으로 당일기준 범위 안의 일 별 일정 가져 옴(global day_range = 15) 4. DB로 넣어 줌 - aws dynamo db사용(1. free tier무료 2. 간단 함) - 넣어주면서 key값으로 중복 검사 함, schedule_day_idx 중복 없었음 5. 없다면 새 일정으로 판단 > 윈도우 알림 줌(카톡으로 줘도 될 듯) 6. timer로 3600초에 한번씩 가져 옴 -thread로 바꿔..
import boto3 services_name = 's3' endpoint_url = 'https://kr.object.ncloudstorage.com' region_name = 'kr-standard' access_key = '' secret_key = '' class Storage(): def __init__(self): s3 = boto3.client(services_name, endpoint_url=endpoint_url, aws_access_key_id=access_key, aws_secret_access_key=secret_key) def create_bucket(self, bname): bucket_name = bname # '-' 안 됨 self.s3.create_bucket(Bucket..
pip install cx_oracle 12.2버전 다운 https://www.oracle.com/database/technologies/instant-client/winx64-64-downloads.html#ic_winx64_inst Instant Client for Microsoft Windows (x64) 64-bit No results found Your search did not match any results. www.oracle.com 원하는 곳에 압축 해제 > 해당 폴더 위치 환경변수 추가(사용자변수 - PATH: ~~~~~~~;I:\instantclient_12_2) import cx_Oracle connection = cx_Oracle.connect("id", "password", "i..
글 수정 중 pip install oci oci reference https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/en/latest/quickstart.html Quickstart — oci 2.6.1 documentation CRUD operations and Pagination Creating entities Let's create a new user and group, and add the user to the group. Then we'll list all users in the tenancy, and finally clean up the user and group we created. First, we'll need to create..
import os, sys import numpy as np import pydicom from pydicom.data import get_testdata_files from PyQt5.QtCore import Qt from PyQt5.QtGui import QPixmap, QImage from PyQt5.QtWidgets import QApplication, QLabel, QVBoxLayout, QWidget class MyApp(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): ds = pydicom.dcmread('H:/dicom/US-RGB-8-epicard', force = True) cvImg = d..
Contact: j0n9m1n1@gmail.com