답안 #24889

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
24889 2017-06-17T00:00:43 Z RezwanArefin01 수열 (BOI14_sequence) C++14
0 / 100
0 ms 2116 KB
//Bismillahir Rahmanir Rahim
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> ii;

int main(int argc, char const *argv[]) {
#ifdef LOCAL_TESTING
	freopen("in", "r", stdin);
#endif
	int k; cin>>k; int a[k];
	for(int i=0; i<k; i++) {
		cin>>a[i];
	}
	if(k == 1) { cout<<a[0]<<endl; return 0;}
	int dig = log10(k) + 1; 
	int ans = a[0];
	for(int i=0; i<dig; i++) ans *= 10; 
	cout<<ans<<endl;
} 
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2116 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2116 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2116 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2116 KB Output isn't correct
2 Halted 0 ms 0 KB -