Ashish has a tree consisting of nn nodes numbered 11 to nn rooted at node 11 . The ii -th node in the tree has a cost aiai , and binary digit bibi is ...
分类:
其他好文 时间:
2020-06-01 23:55:59
阅读次数:
100
题目 比较两个字符串,有多少相同位置的字符是相同的,相同的字符放在不同的位置 class Solution { public: int digit[10]; string getHint(string secret, string guess) { int a = 0, b = 0; for (in ...
分类:
其他好文 时间:
2020-05-28 13:20:49
阅读次数:
49
题目 People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6 digit number, w ...
分类:
其他好文 时间:
2020-05-18 14:35:03
阅读次数:
49
People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, wher ...
分类:
其他好文 时间:
2020-05-16 22:26:57
阅读次数:
80
S - Digit Sum 原题链接:https://atcoder.jp/contests/dp/tasks/dp_s 题目大意: 给一个n,求从1到n的数中,所有位上的数字之和能被m整除的个数。 解题思路: 数位$dp$,建一个三维数组,$dp[i][j][k]$,其中,$i$代表第几位,j代表 ...
分类:
其他好文 时间:
2020-05-08 20:02:36
阅读次数:
87
//alphabet 英文字母 ,blank 空格,数字 digit#include <stdio.h>int main(){ char c; int alphabet=0,blank=0,digit=0,other=0; printf("请输入一行字符:\n"); c=getchar(); whi ...
分类:
其他好文 时间:
2020-05-07 20:16:29
阅读次数:
114
public class Solution { public int squareSum(int n) { int sum = 0; while(n > 0){ int digit = n % 10; sum += digit * digit; n /= 10; } return sum; } pu ...
分类:
其他好文 时间:
2020-05-01 00:46:07
阅读次数:
37
private static final String UNIT = "万仟佰拾亿仟佰拾万仟佰拾元角分";private static final String DIGIT = "零壹贰叁肆伍陆柒捌玖";private static final double MAX_VALUE = 99999999 ...
分类:
其他好文 时间:
2020-04-21 09:49:38
阅读次数:
72
Problem : A self dividing number is a number that is divisible by every digit it contains. For example, 128 is a self dividing number because 128 % 1 ...
分类:
其他好文 时间:
2020-04-19 09:12:52
阅读次数:
59
题目描述: 方法一:逻辑判断法:O(N) class Solution: def isNumber(self, s: str) -> bool: s = s.strip() met_dot = met_e = met_digit = False for i, char in enumerate(s) ...
分类:
其他好文 时间:
2020-04-14 22:14:30
阅读次数:
80