분류 전체보기 47

A collection of Blockchain Interview Questions (In Progress...)

General Blockchain Interview Questions 출처: https://www.edureka.co/blog/interview-questions/blockchain-interview-questions/#GeneralBlock Q1. What do you know about Blockchain? What is the difference between Bitcoin Blockchain and Ethereum Blockchain? 블록체인은 변하지않는 기록들의 분산형 데이터베이스 이다. 비트코인(최초의 암호화폐)의 발명으로 발견되었다. Q2. What is the principle on which blockchain technology is based on? 복제되지 않고 사용자들 사이에 배..

Blockchain 2022.09.29

[백준(BOJ) - Python] 10707번 <수도요금>

📄문제 🔍코드 a = int(input()) # x사의 1리터당 요금 b = int(input()) # y사의 기본요금 c = int(input()) # y사의 요금이 기본요금이 되는 사용량의 상한금 d = int(input()) # y사의 1리터당 추가 요금 p = int(input()) # 한달 간 수도의 사용량 X = a * p # x사의 한달 수도 요금 Y = 0 # y사의 한달 수도 요금 if p c: Y += b + (p - c) * d print(min(X, Y)) 문제 출처 : https://www.acmicpc.net/problem/10707

백준 알고리즘 2022.02.15