Recent Posts
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 |
Tags
- 개성국밥
- 코루틴 컨텍스트
- mp4fpsmod
- JanusGateway
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- preemption #
- python
- 깡돼후
- 달인막창
- 코루틴 빌더
- VARCHAR (1)
- JanusWebRTCServer
- vfr video
- 오블완
- 겨울 부산
- table not found
- PytestPluginManager
- tolerated
- addhooks
- JanusWebRTC
- 자원부족
- 티스토리챌린지
- pytest
- terminal
- JanusWebRTCGateway
- taint
- Value too long for column
- PersistenceContext
- Spring Batch
- kotlin
Archives
너와 나의 스토리
[SW] 7829 보물왕 태혁 (D4) 본문
반응형
문제: https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWtInr3auH0DFASy
문제 풀이:
가장 작은 값, 큰 값 구해서 곱해주면 된다.
소스 코드:
#include <iostream>
using namespace std;
int tc, n;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> tc;
for(int z=1;z<=tc;z++){
cin >> n;
int small= 1000001, big = 2;
for (int i = 0; i < n; i++) {
int a;
cin >> a;
small = small > a ? a : small;
big = big < a ? a : big;
}
cout << "#"<<z<<" "<<small * big << '\n';
}
return 0;
}
반응형
'Algorithm > 기타' 카테고리의 다른 글
[BOJ] 13560 축구 (0) | 2019.10.03 |
---|---|
[BOJ] 16287 Parcel (0) | 2019.09.27 |
(BOJ) 9934 완전 이진 트리 (0) | 2019.07.31 |
(BOJ) 1965 상자 넣기 (0) | 2019.07.18 |
(BOJ) 15976 XCorr (테스트 케이스) (0) | 2019.07.14 |
Comments