2019-2020 ICPC Northwestern European Regional Programming Contest (NWERC 2019) A,EE - Expeditious CubingA - Average Rank
E - Expeditious Cubing题解:如果有浮点型可能会损失精度,这里说了给出的都是两位小数,所以我们直接把所有小数整体向右移动把他们变成整形,然后推式子的时候先从两个边界推,然后再推一般情况会好写一些。#include <bits/stdc++.h>//#define int long longconst int N=4e5+7;using namespace...