摘要:
我要逼逼:在随笔中添加你想要的一张图片,然后点击右键 -> “检查元素” -> 找到地址。然后点击“管理” -> “设置” -> “页面定制CSS代码” -> 粘贴你要的代码 这是我的背景: /*simplememory*/ #google_ad_c1, #google_ad_c2 {display 阅读全文
摘要:
import java.util.Set; import java.util.List; import java.util.HashSet; import java.util.TreeSet; import java.util.Iterator; import java.util.ArrayList 阅读全文
摘要:
import java.util.Scanner; public class GAGA{ public static void main(String args[]){ Scanner input = new Scanner(System.in); //提示输入 System.out.print(" 阅读全文
摘要:
最近写JAVA作业,让我觉得头秃,还是建立一些随笔吧。 代码要实现的内容如题目所述。 import java.util.*; class Queue { ArrayList<Object> qlist = new ArrayList<>(); Queue() { } // 元素入队 public v 阅读全文
摘要:
我觉得要死了,不会导入文件,手动输入了600多行数据.. from matplotlib import pyplot as plt import numpy as np from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = A 阅读全文
摘要:
Problem Description The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Ouli 阅读全文
摘要:
Problem Description Given two sequences of numbers : a[1], a[2], ...... , a[N], and b[1], b[2], ...... , b[M] (1 <= M <= 10000, 1 <= N <= 1000000). Yo 阅读全文
摘要:
Problem Description A mysterious country will hold a football world championships Abnormal Cup, attracting football teams and fans from all around the 阅读全文
摘要:
Problem Description 比赛题目:http://acm.hdu.edu.cn/downloads/CCPC2018-Hangzhou-ProblemSet.pdf Source 2017中国大学生程序设计竞赛-杭州站-重现赛(感谢浙江理工) Recommend liuyiding | 阅读全文
摘要:
Problem Description 晨晨在纸上写了一个长度为N的非负整数序列{ai}。对于这个序列的一个连续子序列{al,al+1,…,ar}晨晨可以求出其中所有数异或的结果 alxoral+1xor...xorar其 中xor表示位异或运算,对应C、C++、 Java等语言中的^运算。小璐提出 阅读全文
摘要:
Description Description 问题描述 给定n个十六进制正整数,输出它们对应的八进制数。 输入格式 输入的第一行为一个正整数n (1< =n< =10)。 接下来n行,每行一个由0~9、大写字母A~F组成的字符串,表示要转换的十六进制正整数,每个十六进制数长度不超过100000。 阅读全文