Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ETCL
- 대용량 데이터 Batch
- 대용량 데이터 이행
- 계층적질의문
- dbms
- 마이데이터 비즈니스 모델
- 구름코테
- K-MOOC 매치업 강좌
- K-MOOC 3주차
- 데이터 이행
- 1주차:메타데이터와 데이터표준화
- 백준
- 코테
- SQL-PLUS
- 대용량데이터 처리방안
- sql
- EBH
- 마이데이터 개념
- 마이데이터 개념과 원칙
- 코딩테스트
- 마이데이터 국민참여단
- 대용량 데이터 처리
- 구름Level
- 엔저의 원인
- 2022 마이데이터 국민참여단 후기
- 오라클
- 2주차 : ETL/CDC
- 데이터 허브
- 무결성제약조건
- GROUP함수
Archives
- Today
- Total
어제보다 더 나은 나
구름LEVEL_화학물질 본문
t = int(input())
test_case = [list(map(int, input().split())) for _ in range(2 * t)]
for i in range(t):
special_volume = 0
min_set = 0
maxi = max(test_case[2 * i + 1])
if maxi == 0:
for j in range(len(test_case[2 * i + 1])):
test_case[2 * i + 1][j] = test_case[2 * i + 1][j] + test_case[2 * i][1]
min_set = min_set + 1
while True:
if test_case[2 * i + 1][2] == 0:
for j in range(len(test_case[2 * i + 1])):
test_case[2 * i + 1][j] = test_case[2 * i + 1][j] + test_case[2 * i][1]
min_set = min_set + 1
test_case[2 * i + 1][0] = test_case[2 * i + 1][0] - test_case[2 * i + 1][2]
test_case[2 * i + 1][1] = test_case[2 * i + 1][1] - test_case[2 * i + 1][2]
test_case[2 * i + 1][2] = test_case[2 * i + 1][2] - test_case[2 * i + 1][2]
special_volume = special_volume + test_case[2 * i + 1][2]
if special_volume >= test_case[2 * i][2]:
break
else:
test_case[2 * i + 1].sort(reverse=True)
else:
if maxi % test_case[2 * i][1] != 0:
min_set = maxi // test_case[2 * i][1] + 1
else:
min_set = maxi // test_case[2 * i][1]
for j in range(len(test_case[2 * i + 1])):
test_case[2 * i + 1][j] = test_case[2 * i][1] * min_set - test_case[2 * i + 1][j]
test_case[2 * i + 1].sort(reverse=True)
while True:
if test_case[2 * i + 1][2] == 0:
for j in range(len(test_case[2 * i + 1])):
test_case[2 * i + 1][j] = test_case[2 * i + 1][j] + test_case[2 * i][1]
min_set = min_set + 1
test_case[2 * i + 1][0] = test_case[2 * i + 1][0] - test_case[2 * i + 1][2]
test_case[2 * i + 1][1] = test_case[2 * i + 1][1] - test_case[2 * i + 1][2]
test_case[2 * i + 1][2] = test_case[2 * i + 1][2] - test_case[2 * i + 1][2]
special_volume = special_volume + test_case[2 * i + 1][2]
if special_volume >= test_case[2 * i][2]:
break
else:
test_case[2 * i + 1].sort(reverse=True)
print(min_set)
'코딩테스트 > 문제풀이' 카테고리의 다른 글
백준_1316번_그룹단어체커 (0) | 2022.05.13 |
---|---|
백준_1075번_나누기 (0) | 2022.05.12 |
구름LEVEL_파도 센서(별1개)_답 (0) | 2022.05.06 |
구름LEVEL_인공지능청소기(별1개)_답 (0) | 2022.05.04 |
구름LEVEL_빙글빙글1(별2개)_답 (0) | 2022.05.03 |
Comments