Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
139845 左锶焜 14经过路口 C++ Accepted 0 MS 260 KB 427 2025-12-09 20:00:30

Tests(1/1):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int y=100000,x=0; while(y>50000){ y-=y*0.05; x++; } if(y<5000){ y-=5000; x++; } cout<<x+9; return 0; }