Submission #1464925
Source Code Expand
Copy
#include <bits/stdc++.h> #define x first #define y second #ifdef ONLINE_JUDGE #define DEBUG(x) #else #define DEBUG(x) cerr << #x << ": " << x << endl; #endif using namespace std; typedef long long ll; typedef long double ld; typedef vector<int> vi; typedef vector<vi> vvi; typedef pair<int,int> ii; typedef pair<ll,ll> pll; const int mod=1000000000+7; int addm(int& a,int b) {return (a+=b)<mod?a:a-=mod;} template<class T,class U> bool smin(T& a,U b) {return a>b?(a=b,1):0;} template<class T,class U> bool smax(T& a,U b) {return a<b?(a=b,1):0;} int main() { ios::sync_with_stdio(0); cin.tie(0); ll K; cin >> K; ll n=50; ll div=(K+n-1)/n,rem=n*div-K; cout << n << endl; for (int i=0;i<n;i++) { ll cur=n-1+div; if (i<rem) cur+=rem-1-n; else cur+=rem; cout << cur << ' '; } cout << endl; }
Submission Info
Submission Time | |
---|---|
Task | D - Decrease (Contestant ver.) |
User | Whalanator |
Language | C++14 (GCC 5.4.1) |
Score | 600 |
Code Size | 860 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 256 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 600 / 600 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | example0, example1, example2, example3, example4 |
All | corner0, corner1, corner2, corner3, corner4, corner5, corner6, corner7, corner8, corner9, example0, example1, example2, example3, example4, rand0, rand1, rand2, rand3, rand4, rand5, rand6, rand7, rand8, rand9 |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
corner0 | AC | 1 ms | 256 KB |
corner1 | AC | 1 ms | 256 KB |
corner2 | AC | 1 ms | 256 KB |
corner3 | AC | 1 ms | 256 KB |
corner4 | AC | 1 ms | 256 KB |
corner5 | AC | 1 ms | 256 KB |
corner6 | AC | 1 ms | 256 KB |
corner7 | AC | 1 ms | 256 KB |
corner8 | AC | 1 ms | 256 KB |
corner9 | AC | 1 ms | 256 KB |
example0 | AC | 1 ms | 256 KB |
example1 | AC | 1 ms | 256 KB |
example2 | AC | 1 ms | 256 KB |
example3 | AC | 1 ms | 256 KB |
example4 | AC | 1 ms | 256 KB |
rand0 | AC | 1 ms | 256 KB |
rand1 | AC | 1 ms | 256 KB |
rand2 | AC | 1 ms | 256 KB |
rand3 | AC | 1 ms | 256 KB |
rand4 | AC | 1 ms | 256 KB |
rand5 | AC | 1 ms | 256 KB |
rand6 | AC | 1 ms | 256 KB |
rand7 | AC | 1 ms | 256 KB |
rand8 | AC | 1 ms | 256 KB |
rand9 | AC | 1 ms | 256 KB |