Submission #15023450
Source Code Expand
Copy
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() //#pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i @hamayanhamayan0 / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ int N; //--------------------------------------------------------------------------------------------------- void _main() { cin >> N; int ans = (10000 - N) % 1000; cout << ans << endl; }
Submission Info
Submission Time | |
---|---|
Task | A - Payment |
User | hamayanhamayan |
Language | C++ (GCC 9.2.1) |
Score | 100 |
Code Size | 1484 Byte |
Status | AC |
Exec Time | 7 ms |
Memory | 3632 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 100 / 100 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | sample_01.txt, sample_02.txt |
All | hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, sample_01.txt, sample_02.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
hand_01.txt | AC | 7 ms | 3600 KB |
hand_02.txt | AC | 2 ms | 3540 KB |
hand_03.txt | AC | 3 ms | 3528 KB |
hand_04.txt | AC | 2 ms | 3464 KB |
hand_05.txt | AC | 2 ms | 3560 KB |
random_01.txt | AC | 2 ms | 3576 KB |
random_02.txt | AC | 1 ms | 3560 KB |
random_03.txt | AC | 3 ms | 3592 KB |
random_04.txt | AC | 2 ms | 3632 KB |
random_05.txt | AC | 1 ms | 3576 KB |
random_06.txt | AC | 2 ms | 3596 KB |
random_07.txt | AC | 3 ms | 3480 KB |
random_08.txt | AC | 1 ms | 3596 KB |
random_09.txt | AC | 1 ms | 3628 KB |
random_10.txt | AC | 3 ms | 3600 KB |
sample_01.txt | AC | 2 ms | 3532 KB |
sample_02.txt | AC | 2 ms | 3476 KB |