码迷,mamicode.com
首页 >  
搜索关键字:poj 3252 round numbe    ( 35985个结果
Codeforces Round #677 (Div. 3)
写在前面 最近开始刷CF,今天第一次补完完整的一套CF,总结一下吧,发现做过的题不赶紧总结写题解就容易忘了。 立个flag 争取每天更新一篇CF题解 A. Boring Apartments 模拟题,模拟就完了 #include<bits/stdc++.h> using namespace std; ...
分类:其他好文   时间:2020-11-21 12:44:54    阅读次数:33
Codeforces Round #684 (Div. 2)【ABC1C2】
比赛链接:https://codeforces.com/contest/1440 A. Buy the String 题解 枚举字符串中 $0$ 或 $1$ 的个数即可。 代码 #include <bits/stdc++.h> using namespace std; int main() { io ...
分类:其他好文   时间:2020-11-21 12:41:54    阅读次数:32
POJ 3368 Frequent values (ST表)
##题面 You are given a sequence of n integers a1 , a2 , ... , an in non-decreasing order. In addition to that, you are given several queries consisting ...
分类:其他好文   时间:2020-11-21 12:28:36    阅读次数:7
bat 获取文件名称,路径,属性.....
:: %~1 - expands %1 removing any surrounding quotes ("):: %~f1 - expands %1 to a fully qualified path name:: %~d1 - expands %1 to a drive letter only: ...
分类:其他好文   时间:2020-11-21 12:05:00    阅读次数:6
Codeforces Round #682 (Div. 2) 题解(A-E)
题意:构造一个长度为n的数组,使得每个子数组中所有元素的和能被这个子数组的长度整除 解题思路:显然,构造一个元素全部相同的数组即可满足要求 代码: #include<iostream> #include<algorithm> #include<vector> #include<cstdio> #in ...
分类:其他好文   时间:2020-11-21 11:55:12    阅读次数:6
初学 Python 需要安装哪些软件?
KDnuggets2018年的一个博客发起了一项投票:数据科学中最好用的Python IDE是什么?本次调查共有1900多人参与,调查结果如下图所示。前5个选择是:Jupyter,57%PyCharm,35%Spyder,27%Visual Studio Code,21%Sublime Text,1 ...
分类:编程语言   时间:2020-11-21 11:47:21    阅读次数:7
Vue登录页面
登录页面开发 调整项目目录结构如下 其中 src\router\router.js export default [ { // 命名路由,在router-link中,to属性 :to="{name: 'login'}" path: '/', name: 'login', // 路由名称 // rou ...
分类:其他好文   时间:2020-11-20 12:11:52    阅读次数:8
为什么java里面3*0.1=0.30000000000000004
什么是round-trip? Any double-precision floating-point number can be identified with at most 17 significant decimal digits. This means that if you convert ...
分类:编程语言   时间:2020-11-20 12:04:39    阅读次数:12
VUE:如何设置当前页面的背景色
给当前页面的最外层div class 加样式 /deep/ html, .home { position: fixed; height: 100%; width: 100%; background-color: #658ea9 !important; } 这是效果 ...
分类:其他好文   时间:2020-11-20 11:36:45    阅读次数:25
django models 自定义用户表替换系统默认表
首先新建一个users应用,编写这个应用的models类。 from django.contrib.auth.models import AbstractUser class UserProfile(AbstractUser): ''' 用户 ''' name=models.CharField(ma ...
分类:其他好文   时间:2020-11-19 12:52:05    阅读次数:10
35985条   上一页 1 ... 29 30 31 32 33 ... 3599 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!