Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
320462 林夕佳 【C1-T】至少要买几瓶止咳糖浆? C++ 通过 100 1 MS 256 KB 206 2025-05-05 10:35:01

Tests(3/3):


#include<bits/stdc++.h> using namespace std; int main(){ int n,t; cin>>n; if(n>=10){ cout<<25*3*5/120+1; }else if(n>=7){ cout<<10*3*5/120+1; }else{ cout<<5*3*3/120+1; } return 0; }


测评信息: