51NOD 1087 1 10 100 1000

news/2024/11/8 9:05:05/

http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1087

暴力大法

#include<bits/stdc++.h>
using namespace std;
map <int,int>s;
void solve()
{
int i=1,k=1;
while (i<=1e9)
{
s[i] = 1;
i+=k;
k++;
}
}
int main ()
{
int t,n;
solve();scanf("%d",&t);
while (t--){
scanf("%d",&n);
printf("%d\n",s[n]);
}
}

 

 

百度 an - an-1 = n-1 就可以知道通项公式

然后 用公式算

#include<bits/stdc++.h>
using namespace std;
int main ()
{
int t,n;
scanf("%d",&t);
while (t--){
scanf("%d",&n);
int t = sqrt(2*n-2);
if(t * (t+1) == 2*n-2)
printf("1\n");
else
printf("0\n");
}
}

 


http://www.ppmy.cn/news/588373.html

相关文章

魔兽世界-开战

/* 这里是从网上找的参考代码&#xff0c;有点迷迷糊糊的 */ #include<cstdio> #include<iostream> #include<string> #include<vector> #include<list> #include<stdlib.h> #include<stdio.h> #include<string.h> #include&l…

B0-based remote API modus operandi

B0-based remote API modus operandi 基于B0的远程API操作方法 The B-based remote API should not be mixed-up with the c remote API (or simply remote API), which is an older version of the remote API that is less flexible, and more difficult to extend. 基于B的…

服务器 composer install 报错:proc_open(): fork failed - Cannot allocate memory

运行这几条命令后问题解决 /bin/dd if/dev/zero of/var/swap.1 bs1M count1024 /sbin/mkswap /var/swap.1 /sbin/swapon /var/swap.1总结&#xff1a; 根据问题描述可能是内存原因&#xff0c;maybe是没有给composer配置内存&#xff1f;

没有SLI选择卡的nForce4 SLI主板上市

青云采用nForce4 SLI芯片的主板新品K8SLI日本上市了&#xff0c;该产品和以前的nForce4 SLI主板有所不同&#xff0c;在两个PCI-E扩展槽之间的SLI模式切换开关被取消了&#xff0c;其SLI的模式切换可以在Windows上进行。 作为类似的“nForce4 SLI”主板产品&#xff0c;华硕A8…

Maven 打包的时候提示Some Enforcer rules have failed错误

1. 问题描述 今天在准备打包部署到生产环境时, 发生了下面这个错误: Failed to execute goal org.apache.maven.plugins:maven-enforcer-plugin:1.3.:enforce (enforce-banned-dependencies) on project manager: Some Enforcer rules have failed. Look above for specific…

nForce2芯片组内置网卡、音频驱动安装[转]

nForce2驱动下载&#xff1a; http://www.nvidia.com/object/linux.html 原英文文档 http://download.nvidia.com/XFree86/...leaseNotes.html 序言&#xff1a;nforce芯片组包括一组可以运行在linux下的硬件设备。随同一个显示处理器&#xff0c;芯片中包含一个网络设备&#…

前端---场景题

一个下拉框 200条数据 怎么优化 &#xff08;默认展示10条&#xff09;60个请求&#xff08;限制最多同时请求6个&#xff09;请求并行方案原生拖拽方案及实现细节&#xff08;mouseMove、drag&#xff0c;drop&#xff09; ✅ &#xff08;有待继续完善&#xff09;数组遍历方…

个人用计算机配置清单,电脑配置单这么写?教你写一份合理的电脑配置清单

IT杂志社干货分享 IT杂志社:专注电脑、手机干货分享,欢迎点击右上角关注。 今天聊一下电脑配置单这么写?在开始写配置清单之前,一定要清楚自己的需求和预算。 最简单的决定就是直接选择当下的顶级配置,关于需求和性能之间的关系,请看《漫谈个人电脑的未来》。 写配置清单…