腾讯移动端开发笔试编程题

第一题:和谐的数字 100%
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApp1 {  class Program  {  static void Main(string[] args)  {  string s;  s = Console.ReadLine();  int n = Convert.ToInt32(s);  while (n-- > 0)  {  s = Console.ReadLine();  int i = Convert.ToInt32(s);  Console.WriteLine(Judge(i) ? "Yes" : "No");  }  Console.ReadKey();  }  private static bool Judge(int i)  {  int n = i;  int sum = 0;  while(i != 0)  {  sum += i % 10;  i /= 10;  }  return (n % sum == 0);  }  } }
第二题:巧克力球 100%
using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace ConsoleApp1 {  class Program  {  static void Main(string[] args)  {  string s;  s = Console.ReadLine();  int n = Convert.ToInt32(s);  //就是求连续0个数的乘积,首先要保证头尾都是1  //先去空格  s = Console.ReadLine();  s = s.Replace(" ", "");  //去掉头尾的0  s = s.Trim('0');    int sum = 1;  //最多s.Length - 2个0  int max = s.Length - 2;  for(int i = 1; i < max; i++)  {  Regex regex = new Regex("(?=[1][0]{" + i + "}[1])");  int t = regex.Matches(s).Count;  sum *= (int)Math.Pow(i + 1, t);  }  Console.WriteLine(sum);  Console.ReadKey();  }  } }
第三题:能量矿石 20% 求大佬解答
using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace ConsoleApp1 {  class Program  {  static void Main(string[] args)  {  string s;  s = Console.ReadLine();  string p;  p = Console.ReadLine();  List<string> collection = ps(p);  string pattern = "(?:(" + collection[0];  for(int i = 1; i < collection.Count; i++)  {  pattern += "|" + collection[i];  }  pattern += ")+)";  //Console.WriteLine(pattern);  Regex regex = new Regex(pattern);  MatchCollection matchCollection = regex.Matches(s);  int max = 0;  foreach (Match match in matchCollection)  {  int len = match.ToString().Length;  if (len > max)  {  max = len;  }  }  Console.WriteLine(max * max);  Console.ReadKey();  }  //去除回文和重复  private static List<string> ps(string p)  {  List<string> all = new List<string>();  int len = p.Length;  while (len > 0)  {  int movement = p.Length - len + 1;  if (p.Substring(len - 1).Equals(p.Substring(0, movement)))  all.Add(p + p.Substring(movement));  len--;  }  return all;  }  } }

#腾讯#
全部评论
前端和你的题目是一样的,这个是前端的 https://blog.csdn.net/u013594470/article/details/82726151
点赞 回复 分享
发布于 2018-09-16 17:54
第三道的思路我说先找出有子序列的头坐标的集合,然后再去计算长度
点赞 回复 分享
发布于 2018-09-16 17:56

相关推荐

和蔼:在竞争中脱颖而出,厉害! 但是有一个小问题:谁问你了?😡我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了
点赞 评论 收藏
分享
点赞 4 评论
分享
牛客网
牛客企业服务