Submission #69303780
Source Code Expand
#include <bits/stdc++.h>
#define int long long
using namespace std;
namespace IO {
template<typename T> inline void read(T &x) {
bool f = 1;
x = 0;
char ch = getchar();
while (ch < '0' || ch > '9') {
if (ch == '-')f = 0;
ch = getchar();
}
while (ch >= '0' && ch <= '9') x = (x << 1) + (x << 3) + (ch & 15), ch = getchar();
x = f ? x : -x;
}
template<typename T> inline void write(T x) {
if (x < 0) putchar('-'), x = -x;
if (x > 9) write(x / 10);
putchar(('0' + x % 10));
}
template <typename T, typename ...Args> inline
void read(T &x, Args &...args) {read(x),read(args...);}
template<typename T> inline void write(T x, char c) {write(x), putchar(c);}
}
using namespace IO;
int x,c;
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
cin>>x>>c;
cout<<(x/(1000+c))*1000<<endl;
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | A - Scary Fee |
| User | NingMeng_yang |
| Language | C++ 20 (gcc 12.2) |
| Score | 150 |
| Code Size | 886 Byte |
| Status | AC |
| Exec Time | 1 ms |
| Memory | 3600 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 150 / 150 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | 00-sample-01.txt, 00-sample-02.txt, 00-sample-03.txt |
| All | 00-sample-01.txt, 00-sample-02.txt, 00-sample-03.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt, 01-11.txt, 01-12.txt, 01-13.txt, 01-14.txt, 01-15.txt, 01-16.txt, 01-17.txt, 01-18.txt, 01-19.txt, 01-20.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00-sample-01.txt | AC | 1 ms | 3440 KiB |
| 00-sample-02.txt | AC | 1 ms | 3408 KiB |
| 00-sample-03.txt | AC | 1 ms | 3460 KiB |
| 01-01.txt | AC | 1 ms | 3520 KiB |
| 01-02.txt | AC | 1 ms | 3440 KiB |
| 01-03.txt | AC | 1 ms | 3352 KiB |
| 01-04.txt | AC | 1 ms | 3444 KiB |
| 01-05.txt | AC | 1 ms | 3328 KiB |
| 01-06.txt | AC | 1 ms | 3460 KiB |
| 01-07.txt | AC | 1 ms | 3456 KiB |
| 01-08.txt | AC | 1 ms | 3388 KiB |
| 01-09.txt | AC | 1 ms | 3412 KiB |
| 01-10.txt | AC | 1 ms | 3460 KiB |
| 01-11.txt | AC | 1 ms | 3448 KiB |
| 01-12.txt | AC | 1 ms | 3384 KiB |
| 01-13.txt | AC | 1 ms | 3456 KiB |
| 01-14.txt | AC | 1 ms | 3428 KiB |
| 01-15.txt | AC | 1 ms | 3392 KiB |
| 01-16.txt | AC | 1 ms | 3600 KiB |
| 01-17.txt | AC | 1 ms | 3412 KiB |
| 01-18.txt | AC | 1 ms | 3464 KiB |
| 01-19.txt | AC | 1 ms | 3592 KiB |
| 01-20.txt | AC | 1 ms | 3596 KiB |