hdu 5003 Osu!(水题)

news/2025/1/16 0:47:31/

hdu 5003 Osu!

题目大意:按照要求计算和。

解题思路:水题。

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>using namespace std;const int maxn = 55;int n;
double p[maxn];bool cmp (const double &a, const double& b) {return a > b;
}int main () {int cas;scanf("%d", &cas);while (cas--) {scanf("%d", &n);for (int i = 0; i < n; i++)scanf("%lf", &p[i]);sort(p, p + n, cmp);double ans = 0;for (int i = 0; i < n; i++)ans += pow(0.95, i) * p[i];printf("%.10lf\n", ans);}return 0;
}

http://www.ppmy.cn/news/849060.html

相关文章

一个基于Python的tkinter模块实现的游戏活动日历模拟器

一个基于Python的tkinter模块实现的游戏活动日历模拟器 1、Python环境准备2、简单介绍3、源代码4、源代码及活动配置表下载 1、Python环境准备 运行该项目需要Python3以上的版本需安装excel解析模块&#xff0c;命令为&#xff1a;pip install xlrd1.2.0 2、简单介绍 该项目…

鸿蒙os开发教程,鸿蒙OS应用开发实践(三)

经过前两篇的学习,我们了解了DevEco运行一个程序的基本流程和一个鸿蒙OS应用项目的代码结构。 用一句《三体》格式的话说:跑得动hello world,我们就是同志了。 这一篇,我们就自己手动撸一个简单的鸿蒙交互程序:从一个页面跳转到另一个页面。 (一)创建工程 先创建一个新的T…

C语言模仿文字游戏

刚学了一学期的C语言&#xff0c;记录一下 #include <stdio.h> #include <Windows.h> #include <conio.h> #include <time.h> #include <stdlib.h> #include <string.h> #define SIZE sizeof(struct chizu) struct de_ta {int ima;//现在的…

凤凰os可以运行linux软件吗,手机玩游戏不爽?来试试Phoenix OS凤凰系统

原标题&#xff1a;手机玩游戏不爽&#xff1f;来试试Phoenix OS凤凰系统 手机玩游戏不爽&#xff1f;来试试Phoenix OS 国庆假期和伙伴结伴玩游戏&#xff0c;虽然好玩&#xff0c;但总感觉不尽兴。手机尺寸的限制总归还是影响游戏的体验。 今天来给伙伴们安利一下Phoenix OS&…

微信小游戏

Promise返回结果。重点是resolve(response) return new Promise((resolve, reject) > {login(userInfo).then(response > {if(response.success){setToken(response.data.token);setUserId(response.data.id);setUserName(response.data.name);commit(SET_TOKEN, respon…

cent os7目录详解

概览 文件类型 LINUX有四种基本文件系统类型&#xff1a;普通文件、目录文件、连接文件和特殊文件&#xff0c;可用file命令来识别。 普通文件&#xff1a;如文本文件、C语言元代码、SHELL脚本、二进制的可执行文件等&#xff0c;可用cat、less、more、vi、emacs来察看内容…

.osr 文件格式解析(三) - 读取OSB文件

引用第一篇博客的内容&#xff0c;原osb的文件格式如下 Data TypeDescriptionByteGame mode of the replay (0 osu! Standard, 1 Taiko, 2 Catch the Beat, 3 osu!mania)IntegerVersion of the game when the replay was created (ex. 20131216)Stringosu! beatmap MD5 ha…

语音控制游戏

语音合成 需要安装win32 import win32com.client spwin32com.client.Dispatch("SAPI.SPVOICE") #打开语音播放的接口 for i in range(3):sp.Speak("我是凤姐&#xff0c;我爱王毅,wangyi is lovely") #声音组建 else:sp.Speak("老娘喊了那么久&am…