Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
56898 | zhangweiran | 促销活动 | C++ | Wrong Answer | 0 MS | 240 KB | 158 | 2024-11-16 23:31:24 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a=n/200; int b=25*a; int sum=a-b; cout<<sum; return 0; }