<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> body{ perspective: 1000; perspective-origin: 0,0; /*translateZ() 于此连用*/ } ...
分类:
Web程序 时间:
2020-07-27 17:46:48
阅读次数:
96
html:<a v-on:mouseover="changeActive($event)" v-on:mouseout="removeActive($event)" @click="backTOP" style="width: 39px;height: 39px;position: fixed;bo ...
分类:
其他好文 时间:
2020-07-27 13:49:30
阅读次数:
79
C. Easy 构造两个序列分别要满足 \(\sum_{i=1}^{k} a_{i} = N\) \(\sum_{i=1}^{k} b_{i} = M\) 一种方案能贡献$\prod_^ min(a_, b_)$ 的分数 求所有方案分数的和 生成函数 对于一个序列 $a_{0},a_{1},a_{2 ...
分类:
其他好文 时间:
2020-07-27 09:22:06
阅读次数:
69
FLASH的配置步骤 将FLASH2812_API_v210.lib 添加到头文件中。 (2)将Flash281x_API_Config.h Flash281x_API_Library.h 两个头文件添加进include目录下。这两个头文件主要包含的是 FLASH_API函数的定义 状态返回的定义 ...
Java基础语法(下)-数组Array、 数组概略 package com.bird_01; /* * 数组:存储同一钟数据类型的多个元素的容器。 * * 定义格式: * A:数据类型[] 数组名;(推荐) * B:数据类型 数组名[]; * * 举例: * int[] arr;定义了一个int类型 ...
分类:
编程语言 时间:
2020-07-26 23:03:48
阅读次数:
93
1 asyncData(){ 2 return spitApi.search(1,10,{state:'1'}).then(res=>{ 3 let tmp = res.data.data.rows.map(item=>{ 4 return { 5 ...item, 6 zan:'' 7 } 8 } ...
分类:
其他好文 时间:
2020-07-26 22:59:35
阅读次数:
125
传送门 A Poker Time limit: 1000ms Memory limit: 262144k (wls视频讲解地址) 如果这次交换能够使得这个人手上的牌的点数的期望变大,他就会选择交换(只考虑这次交换,不考虑之后的人的情况)。四个人互相知道他们所有人都使用了这个策略。 题意四个人四张牌, ...
分类:
其他好文 时间:
2020-07-26 19:35:40
阅读次数:
65
Codeforces Round #655 (Div. 2) 1. 题目分析 A: 思维题,构造性题目 B: 打表发现规律 C: 思维 D: 思维+dp E: F: 2. 题解 A. Omkar and Completion 题意: 给定t个测试样例,每个测试样例给定一个n,要求构造一个长度为n的数 ...
分类:
其他好文 时间:
2020-07-26 19:06:12
阅读次数:
64
#!/usr/bin/python # _*_ Coding: Utf-8 _*_ ''' QStackedWidget useful properties and methods of qtabwidget funcs: addWidget(QWidget *widget), removeWidg ...
分类:
其他好文 时间:
2020-07-26 15:32:23
阅读次数:
66