| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75492 | sh25_ganzy | 黑心商家 | C++ | Accepted | 0 MS | 244 KB | 205 | 2025-12-07 14:10:11 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; n/=100; if(n<=10){ cout<<12*n+8; }else{ cout<<12*n+8+(n-6)/5*4; } return 0; }