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
bool ListObject() { int cnt = 0; Aws::String endp = "kr.object.ncloudstorage.com"; Aws::Client::ClientConfiguration config; config.endpointOverride = endp; config.region = "kr-standard"; config.scheme = Aws::Http::Scheme::HTTP; Aws::S3::S3Client s3_client(Aws::Auth::AWSCredentials(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY), config); Aws::S3::Model::ListObjectsRequest request; request.WithBucket(b..
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..
python boto3으로 뚝딱인데 C++로 하려니까... 일단 cmake, build 뚝딱뚝딱 해도 안됐음, 그래서 nuget으로 사용하는 법 찾음 프로젝트 생성 -> 우클 -> nuget패키지 관리... > 찾아보기 검색-> awssdkcpp-s3 설치 1. SET으로 환경변수에 key들 넣어줘도 안 됐음 2. endpointOverride에 문자열 넣으면 uri 에러 났음(Aws::String으로 넣음) bucket delete 예제임 다른 예제들: https://docs.aws.amazon.com/ko_kr/sdk-for-cpp/v1/developer-guide/examples-s3-buckets.html Creating, Listing, and Deleting Buckets - AWS SDK f..
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
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..
S = int(input()) for i in range(1, S + 1): for j in range(1, S + 1): if i % 2 == 0: print(" *", end='') elif i % 2 != 0: print("* ", end='') print("") https://www.acmicpc.net/problem/10995 10995번: 별 찍기 - 20 예제를 보고 규칙을 유추한 뒤에 별을 찍어 보세요. www.acmicpc.net
Contact: j0n9m1n1@gmail.com