记录编号 259707 评测结果 WWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
题目名称 [HZOI 2015]元首の非日常 最终得分 0
用户昵称 GravatarAntiLeaf 是否通过 未通过
代码语言 C++ 运行时间 0.006 s
提交时间 2016-05-11 09:59:14 内存使用 0.04 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1010;
namespace mine{
	int __c,__x,__a[110],__i,__j;
	bool __neg;
	inline int getint(){
		__x=__neg=0;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=(__x<<1)+(__x<<3)+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline void putint(int __x){
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j>=0;__j--)putchar(__a[__j]);
	}
}
using namespace mine;
int temp=0x7fffffff,x,num,n;
int MAIN();
int haha=MAIN();
int main(){;}
inline int MAIN(){
#define COGS
#ifdef COGS
	freopen("bestread.in","r",stdin);
	freopen("bestread.out","w",stdout);
#endif
	n=getint();
	for(int i=0;i<n;i++){
		num=getint();
		if(num<temp){
			temp=num;
			x=i;
		}
	}
	putint(x+1);
	return 0;
}