Python/Baekjoon

[BOJ] Bronze Ⅴ- Day 11

단월໒꒱ 2022. 1. 8. 03:58

사용 언어 : Python

푼 문제

 

 

 

#16394

 

[Python]

 

N = int(input())
print(N - 1946)

 

 

#16430

 

[Python]

 

A, B = map(int, input().split())

if A < B and A >= 1 and B <= 9 :
    print("%d %d" % (B - A, B))

 

 

#17256

 

[Python]

 

ax, ay, az = map(int, input().split())
cx, cy, cz = map(int, input().split())

print("%d %d %d" % (cx - az, cy // ay, cz - ax))

 

 

#17295

 

[Python]

 

print("Avengers: Endgame")

 

 

#17496

 

[Python]

 

A, B, C, D = map(int, input().split())
result = ((A - 1) // B) * C * D

print(result)