题目:https://nanti.jisuanke.com/t/41422 思路:预处理 #include<bits/stdc++.h> using namespace std; int dp[11][1000001]={0}; int main() { for(int i=2;i<=10;i++) ...
分类:
其他好文 时间:
2019-12-24 13:43:39
阅读次数:
80
题目如下: An integer has sequential digits if and only if each digit in the number is one more than the previous digit. Return a sorted list of all the in ...
分类:
其他好文 时间:
2019-12-23 10:27:41
阅读次数:
71
1 void StringCount(char* s) 2 { 3 int len = 0; 4 char* p = s; 5 int cap_letter = 0; 6 int sma_letter = 0; 7 int space = 0; 8 int digit = 0; 9 int othe ...
分类:
其他好文 时间:
2019-12-20 13:42:42
阅读次数:
83
第五章 5.2常见的Web应用安全漏洞 5.2.1SQL注入漏洞 SQL注入漏洞形成的原因:用户输入的数据被SQL解释器执行 防护手段: 参数类型检测:int intval;bool is-numeric;ctype-digit 参数长度检测 危险参数过滤 参数化查询 5.2.2文件上传漏洞 原理: ...
分类:
其他好文 时间:
2019-12-18 20:17:35
阅读次数:
143
题目:复制以p或者P开头,以非数字结尾的文件或目录到/tmp/mytest1 答: #创建文件夹 mkdir /tmp/mytest1 #拷贝文件 cp -r /etc/[pP]*[^[:digit:]] /tmp/mytest1 也可以写成如下格式 mkdir /tmp/mytest1; cp - ...
分类:
其他好文 时间:
2019-12-09 17:10:12
阅读次数:
88
回到: "Linux系列文章" "Shell系列文章" "Awk系列文章" gawk支持的正则 . 匹配任意字符,包括换行符 ^ $ [...] [^...] | + ? () {m} {m,} {m,n} {,n} [:lower:] [:upper:] [:alpha:] [:digit:] [ ...
分类:
其他好文 时间:
2019-12-08 15:21:52
阅读次数:
108
链接: https://vjudge.net/problem/HDU 3709 题意: A balanced number is a non negative integer that can be balanced if a pivot is placed at some digit. More ...
分类:
其他好文 时间:
2019-12-07 01:14:03
阅读次数:
81
1 #include<stdio.h> 2 3 int main(void) 4 { 5 int n; 6 int number[1000]; 7 int digit[10] = {0}; //记录每个数字出现的次数 8 int temp; 9 10 scanf_s("%d", &n); 11 fo ...
分类:
其他好文 时间:
2019-12-06 11:46:48
阅读次数:
780
1 from tkinter import * 2 counter = 30 3 def run_counter(digit): 4 def counting(): 5 global counter 6 counter -= 1 7 digit.config(text=str(counter)) 8 ...
分类:
其他好文 时间:
2019-12-02 13:13:31
阅读次数:
90
Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat ...
分类:
其他好文 时间:
2019-11-29 14:24:00
阅读次数:
88