1 条题解

  • 1

    #include<bits/stdc++.h> using namespace std; int main() { int x; char c; cin>>x>>c; if (c=='y') { if(x<=1000) { cout<<8+5; exit(0); } else { cout<<8+ceil((x-1000)/500+1)*4+5; } } else { if(x<=1000) { cout<<8; exit(0); } else { cout<<8+ceil((x-1000)/500+1)*4; } } return 0; } //自己换行

    • 1

    信息

    ID
    4498
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    (无)
    递交数
    66
    已通过
    42
    上传者