답안 #72093

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
72093 2018-08-26T05:13:29 Z 동진의 (#2167, kdk3776, define_chan, Jinpari) 흔한 자료구조 문제 (FXCUP3_easy) C++17
0 / 100
2 ms 248 KB
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int N, Q, L, R;
int arr[100005];
int ans[100005];
int ans_num;
void Query()
{
	int min = arr[L];
	for (int i = L+1; i <= R; i++)
	{
		if (arr[i] < min)
			min = arr[i];
	}
	ans[ans_num++] = min;
}

int main()
{
	scanf(" %d %d", &N, &Q);
	
	for (int i = 1; i <= N; i++)
	{
		scanf(" %d", &arr[i]);
	}


	for (int i = 0; i < Q; i++)
	{
		scanf(" %d %d", &L, &R);
		Query();
	}

	printf("\n");
	for (int i = 0; i < Q; i++)
	{
		printf("%d\n", ans[i]);
	}
	printf("\n");
	return 0;
}

Compilation message

easy.cpp: In function 'int main()':
easy.cpp:22:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf(" %d %d", &N, &Q);
  ~~~~~^~~~~~~~~~~~~~~~~~
easy.cpp:26:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf(" %d", &arr[i]);
   ~~~~~^~~~~~~~~~~~~~~~
easy.cpp:32:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf(" %d %d", &L, &R);
   ~~~~~^~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 248 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 248 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -