1337 The Drunk Jailer 简单模拟

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1337 The Drunk Jailer 简单模拟相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
http://acm.hdu.edu.cn/showproblem.php?pid=1337

#include<cstdio> 
#include<iostream>
#include<cstring>
#include<string>
using namespace std;
int main(void)
{
	int t; cin>>t;
	while(t--)
	{
		bool a[105];
		memset(a,0,sizeof a);
		int n; cin>>n;
		for(int i=1;i<=n;i++)
		{
			for(int j=i;j<=n;j+=i) a[j]=!a[j];
		}
		int ans=0;
		for(int i=1;i<=n;i++) if(a[i]) ans++;
		cout<<ans<<endl;
	}
	return 0;
}

以上是关于1337 The Drunk Jailer 简单模拟的主要内容,如果未能解决你的问题,请参考以下文章

leetcode1337. The K Weakest Rows in a Matrix

LeetCode --- 1337. The K Weakest Rows in a Matrix 解题报告

Lightoj 1003 - Drunk(拓扑排序)

The House ON Mango Street

VulnHub Drunk Admin Web Hacking Challenge: 1

醉汉随机行走/随机漫步问题(Random Walk Drunk Python)