XTU 1245 Lisa’s Puzzle

2023-12-15 17:59
文章标签 puzzle xtu lisa 1245

本文主要是介绍XTU 1245 Lisa’s Puzzle,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Lisa’s Puzzle

[ Submit Code ] [ Top 20 Runs ]
Acceteped : 18   Submit : 145
Time Limit : 1000 MS Memory Limit : 65536 KB
 

Description

Lisa’s Puzzle

题目描述

5的二进制是101,13的二进制是1101,所以在二进制上,5是13的后缀。Lisa获得了一个长长的正整数列表,她想知道在列表中每一个数是列表中多少个其他数的后缀?

输入

第一行是一个整数 N,1N100000 ,表示整数的个数。 以后N行,每行一个正整数,每个都可以使用一个32位int表示,而且所有的数都是唯一的。

输出

每个整数对应的结果输出一行,

样例输入

5
5
13
1
2
3

样例输出

1
0
3
0
0

http://www.ngui.cc/el/4541301.html

相关文章

XTU 1236 Fibonacci

Fibonacci[ Submit Code ] [ Top 20 Runs ]Acceteped : 40 Submit : 51 Time Limit : 1000 MS Memory Limit : 65536 KB Description 题目描述 Fibonacci数是非常有名的一个数列 f(n)f(n-1)f(n-2),f(0)1,f(1)2。 我们可以把任意一个数X表示成若干不相同的fibonacci数的和&…

XTU 程序设计实践模拟考试题1

题目链接&#xff1a;点击此处打开链接 题号分别是&#xff1a;1248/1249/1250/1251/1252/1253。 1248思路&#xff1a;枚举出所有可能&#xff0c;判结果即可。详见代码。 AC代码如下&#xff1a; #include <bits/stdc.h> using namespace std; int a[3], b[3];int …

HDU 5695 Gym Class

题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid5695 Gym Class Time Limit: 6000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 879 Accepted Submission(s): 357 Problem Description 众所周知&#xff0c…

HDU 2222 Keywords Search

题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid2222 Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 51270 Accepted Submission(s): 16514 Problem Description In t…

HDU 1263 水果

题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid1263 水果 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5708 Accepted Submission(s): 2257 Problem Description 夏天来了~~好开心啊,呵呵…

HDU 4858 项目管理

题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid4858 项目管理 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2229 Accepted Submission(s): 834 Problem Description 我们建造了一个大项目…

CodeForces 556A Case of the Zeros and Ones

题目链接&#xff1a;http://codeforces.com/problemset/problem/556/A Case of the Zeros and Ones time limit per test &#xff1a;1 second memory limit per test &#xff1a;256 megabytes input &#xff1a;standard input output &#xff1a;standard output Andre…

POJ 1962 Corporative Network

题目链接&#xff1a;http://poj.org/problem?id1962 Corporative Network Time Limit: 3000MS Memory Limit: 30000KTotal Submissions: 3725 Accepted: 1347 Description A very big corporation is developing its corporative network. In the beginning each of the N e…

CodeForces 699B One Bomb

题目链接&#xff1a;http://codeforces.com/problemset/problem/699/B One Bomb time limit per test &#xff1a;1 second memory limit per test &#xff1a;256 megabytes input &#xff1a;standard input output &#xff1a;standard output You are given a descri…

CodeForces 339D Xenia and Bit Operations

题目链接&#xff1a;http://codeforces.com/problemset/problem/339/D Xenia and Bit Operations time limit per test &#xff1a;2 seconds memory limit per test &#xff1a;256 megabytes input &#xff1a;standard input output &#xff1a;standard output Xenia…

这篇关于XTU 1245 Lisa’s Puzzle的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/497350

相关文章

XTU 1237 计算几何

题面: Magic Triangle Problem Description: Huangriq is a respectful acmer in ACM team of XTU because he brought the best place in regional contest in history of XTU. Huangriq works in a big compa

XTU 1233 n个硬币连续m个正面个数(dp)

题面: Coins Problem Description: Duoxida buys a bottle of MaiDong from a vending machine and the machine give her n coins back. She places them in a line randomly showing head face or tail face o

HDU 1097 A hard puzzle(规律)

题目: http://acm.hdu.edu.cn/showproblem.php?pid=1097 题意: 求a的b次方的最后一位。 题解: 直接从例子入手, 第一组数据 7 66,结果如下(只要最后一位所以模10) 7 9 3 1 7 9··· 循环节为4,即结果在4个数值内循环出现。 第二组数据 6 800,结果如下 6 6 6 6··· 循环节为1 ···

uva519 - Puzzle (II)(回溯)

题目:uva519 - Puzzle (II) 题目大意:给出拼图,要求将给出的拼图拼成 n行m列的矩形,可以输出yes,不行输出no。 解题思路:直接dfs,但是需要剪枝。 1、判断 F 的出现个数是否等于 2 * ( n + m) , 还有IO的个数是否匹配,不匹配就直接剔除,。 2、边界问题要处理,例如第一行第N行,第一列第M列,这些地方的拼图是有要求的,这些边界拼图的的外围都

XTU 1185 Bob's Problem

Bob's Problem Accepted : 53 Submit : 356Time Limit : 1000 MS Memory Limit : 65536 KB 题目描述 Bob今天碰到一个问题,他想知道x3+y3 = c 是否存在正整数解? 输入 第一行是一个整数K(K≤20000),表示样例的个数。 以后每行一个整数c(2≤c≤109) 输出 每行输出一个样例的结果,

Vue - 详细介绍 vue-monoplasty-slide-verify vue3-puzzle-vcode 滑动验证组件

Vue - 详细介绍 vue-monoplasty-slide-verify & vue3-puzzle-vcode 滑动验证组件 在日常的账号登录所需要的大部分是滑动验证来检验人为操作,免于字母验证码的繁琐输入,下面介绍在Vue2和Vue3中适用的滑动验证组件。 1、vue-monoplasty-slide-verify(Vue2) 安装: npm install --save vue-

Lisa随手记 1.7 发布

版本:1.7 CSDN发布日期:2014年10月26日 应用简介 Lisa随手记是一款简单、易用、免费、无广告的移动记事本软件,具有以下特点: * 点开应用即可输入和显示,记录首页显示一目了然,能够快速输入、修改、保存和删除记录; * 具有丰富的自定义功能,可以按自己的喜好更改语言、字体、背景还有笔记名称; * 支持导出多种格式的文件; * 安装1.6版以上的Lisa随手记后无须任何其他

Lisa随手记 1.7 帮助

 Lisa随手记,想记就记,随时随地 更新提示 1. UI简化,去掉了信息提示栏,提示信息会在编辑框中显示 2. 可以长按记录将其拖拽至编辑框进行修改 3. 向右滑动删除记录后,记录不会立即消失,而是以中划线表示已删除,再次向右滑动可以恢复记录 4. 不再提示未保存信息,主界面关闭和退出应用前程序会自动保存编辑框中的记录和所有更改。 功能与特点 ☞免账号,不用注册,不用

Lisa随手记下载量统计

百度手机助手 1.4版 28天41次,平均1.46次/天 1.5版 14天22次,平均1.57次/天 1.6版 17天63次,平均3.71次/天 总体,从1.6版开始涨幅明显 360安全市场 1.6版9月25日上架,迄今共15天79次,平均5.27次/天

Lisa随手记历版默认背景

1.0版-1.1版 1.2版-1.3版 1.4版-1.6版