A. Jzzhu and Children【1000 / 模拟】

A. Jzzhu and Children【1000 / 模拟】
https://codeforces.com/problemset/problem/450/A

#include<bits/stdc++.h>
using namespace std;
int s[105];
queue<int>q;
int main(void)
{
	int n,m,x; cin>>n>>m;
	for(int i=1;i<=n;i++) cin>>s[i],q.push(i);
	while(q.size()>1)
	{
		int temp=q.front(); q.pop();
		if(s[temp]<=m) continue;
		else q.push(temp),s[temp]-=m;
	}
	cout<<q.front();
	return 0;
} 
上一篇:【转载】SQL Server Reporting Service 报错:报表服务器无法解密用于访问报表服务器数据库中的敏感数据或加密数据的对称密钥,必须还原备份密钥或删除所有加密的内容。


下一篇:使用Python连接数据库的脚本