摘要:
随机数 import java.util.Random; public class Main { public static void main(String[] args) { Random r = new Random(); int data = r.nextInt(10); //0-9之间的随 阅读全文
摘要:
算法 CF955 1982 https://codeforces.com/contest/1982 1 数学思维 /* 我们无需考虑一直加1,而是加一个数到y的倍数这样简化的去想。 */ #include<bits/stdc++.h> #define int long long using name 阅读全文