답안 #706518

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
706518 2023-03-06T21:02:36 Z xuliu Self Study (JOI22_ho_t2) C++17
0 / 100
0 ms 212 KB
#include <bits/stdc++.h>

using namespace std;

#define ll long long 
#define debug if(0)

const int inf = 1e9 + 7;

int main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	// m = 1
	int n, m; cin>>n>>m;
	vector<int> a(n), b(n);
	int ans = inf;
	for(int i=0; i<n; i++) cin>>a[i];
	for(int i=0; i<m; i++) cin>>b[i];
	for(int i=0; i<n; i++) ans = min(ans, a[i]);
	cout<<ans<<"\n";
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -