Skip to content

Commit e6ff184

Browse files
committed
[BOJ]#13335트럭/ Gold/ 실패
https://www.acmicpc.net/problem/13335
1 parent 70ff1f7 commit e6ff184

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Hongjoo/백준/트럭.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
'''
2+
Condition
3+
1. 다리 - 최대 하중 L , 최대 개수 W , 길이 W
4+
-단위 시간 에 거리
5+
6+
'''
7+
import sys
8+
# 1. 입력 - 버스 개수 , 다리 길이 , 다리 최대 하중
9+
N , W , L = map(int, sys.stdin.readline.splite())
10+
buses = map(int, sys.stdin.readline.splite())
11+
#2. 매 time 마다 bridge 최대 하중을 넘지 않은채 올리기

0 commit comments

Comments
 (0)