码迷,mamicode.com
首页 >  
搜索关键字:nearly prime numbers    ( 9679个结果
758. Bold Words in String
package LeetCode_758 import java.util.* import kotlin.collections.HashSet /** * 758. Bold Words in String * (Prime) * Given a set of keywords words an ...
分类:其他好文   时间:2020-09-17 18:53:02    阅读次数:31
ACM题目 1083: Hello, world!
题目描述: This is the first problem for test. Since all we know the ASCII code, your job is simple: Input numbers and output corresponding messages. 输入: T ...
分类:其他好文   时间:2020-09-17 17:23:30    阅读次数:51
[USACO06NOV] Round Numbers S
题面 # include <iostream> # include <cstdio> # include <cstring> # define MAXN 35 int a[MAXN]; int f[MAXN][MAXN][MAXN]; // f[i][j][k] 二进制下 最高位为第 i 位,有 j ...
分类:其他好文   时间:2020-09-17 15:45:29    阅读次数:24
buuctf rsa类题目(4)
##1.rsa4 这是一道考察低指密广播攻击的题目,因为只给了3个n和3个加密的密文,猜测这里的e应该为3,通过中国剩余定理求解 \(C=c_1M_1^{-1}M_1+c_2M_2^{-1}M_2+c_3M_3^{-1}M_3\) 对C开3次方就可以求出m 脚本如下: from Crypto.Uti ...
分类:其他好文   时间:2020-09-17 13:32:03    阅读次数:26
类加载器的命名空间
同一个命名空间中,类只加载一份 AppClassLoader加载程序中自定义的类。无论加载多少次,只要是被AppClassLoader加载的,其Class信息hashcode都是相同的。 子加载器可见父加载器加载的类 到处都是例子。比如核心类库的类,AppClassLoader所加载的类,都能使用S ...
分类:其他好文   时间:2020-09-16 12:10:25    阅读次数:33
python遍历列表的方法(三种)
numbers=[1,2,3,4,5]#1.最常见的for迭代器遍历:print("最常见的for迭代器遍历:")fornumberinnumbers:print(number)#2.while遍历,通过索引取值:print("while遍历:")i=0whilei<len(numbers):print(numbers[i])i+=1#3.for配合range遍历,类似于C语言的for语句遍
分类:编程语言   时间:2020-09-14 18:41:33    阅读次数:38
F. x-prime Substrings(AC自动机 + dp)
题意:你被给予了一个整数值x还有一个由1~9的数字组成的字符串。 让我们定义$f(l,r)$为$s[l...r]$之间的数字和。 让我们称一个子串$s[l_{1}...r_{1}]$为$x-prime$的,如果 \(f(l_{1}, r_{1}) = x\) 不存在值$l_{2}, r_{2}$使得 ...
分类:其他好文   时间:2020-09-08 20:46:23    阅读次数:47
for循环
增强for循环 用于遍历数组或集合,进行进一步操作 public class ForDemo01 { public static void main(String[] args) { int[] numbers = {1, 2, 3, 4, 5}; for (int num : numbers) { ...
分类:其他好文   时间:2020-08-27 11:45:47    阅读次数:53
C 数组
C 语言支持数组数据结构,它可以存储一个固定大小的相同类型元素的顺序集合。数组是用来存储一系列数据,但它往往被认为是一系列相同类型的变量。 数组的声明并不是声明一个个单独的变量,比如 number0、number1、...、number99,而是声明一个数组变量,比如 numbers,然后使用 nu ...
分类:编程语言   时间:2020-08-26 19:03:33    阅读次数:68
线性筛求莫比乌斯
1 #include<bits/stdc++.h> 2 using namespace std; 3 const int maxn=1e5+5; 4 bool isprime[maxn]; 5 int prime[maxn]; 6 int mu[maxn]; 7 int cnt=0; 8 void ...
分类:其他好文   时间:2020-08-24 16:36:48    阅读次数:60
9679条   上一页 1 ... 9 10 11 12 13 ... 968 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!