Submission #993096


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)
#define all(c) (c).begin(), (c).end()
#define zero(a) memset(a, 0, sizeof a)
#define minus(a) memset(a, -1, sizeof a)
#define watch(a) { cout << #a << " = " << a << endl; }
template<class T1, class T2> inline bool minimize(T1 &a, T2 b) { return b < a && (a = b, 1); }
template<class T1, class T2> inline bool maximize(T1 &a, T2 b) { return a < b && (a = b, 1); }

typedef long long ll;
int const inf = 1<<29;

int main() {

  ll N; cin >> N;

  ll ok = N;  // compare(ok) is always true
  ll ng = 0;    // compare(ng) is always false

  auto compare = [&](ll X) {
    // X = max in S
    ll Y = N - X; // 和で作るべき値

    // X 未満の数字を使って、Y以上を作ることが出来るか
    ll x = floor(sqrt(X));
    return x * (x + 1) / 2 >= Y;

    // X 未満の数字を使って、ちょうどYを作ることが出来るか

  };
  
  while(abs(ok-ng) > 1) { // ng極限の隣がokとなるまで
    ll mid = (ok + ng) / 2LL;
    (compare(mid) ? ok : ng) = mid;
  }

  ll sum = 0;
  rep(i, N) {
    if(ok + sum == N) break;
    printf("%d\n", i + 1);
    sum += i + 1;
  }

  cout << ok << endl;

  
  return 0;
}

Submission Info

Submission Time
Task B - Exactly N points
User motxx
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1311 Byte
Status WA
Exec Time 940 ms
Memory 77312 KB

Judge Result

Set Name sample dataset1 dataset2
Score / Max Score 0 / 0 0 / 200 0 / 100
Status
AC × 3
AC × 4
WA × 9
AC × 4
WA × 17
Set Name Test Cases
sample sample-01.txt, sample-02.txt, sample-03.txt
dataset1 sample-01.txt, sample-02.txt, 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
dataset2 sample-01.txt, sample-02.txt, 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, 02-01.txt, 02-02.txt, 02-03.txt, 02-04.txt, 02-05.txt, 02-06.txt, 02-07.txt, 02-08.txt
Case Name Status Exec Time Memory
01-01.txt WA 3 ms 256 KB
01-02.txt AC 3 ms 256 KB
01-03.txt WA 3 ms 256 KB
01-04.txt WA 2 ms 256 KB
01-05.txt WA 3 ms 256 KB
01-06.txt WA 3 ms 256 KB
01-07.txt WA 3 ms 256 KB
01-08.txt WA 3 ms 256 KB
01-09.txt WA 3 ms 256 KB
01-10.txt WA 3 ms 256 KB
02-01.txt WA 3 ms 256 KB
02-02.txt WA 3 ms 256 KB
02-03.txt WA 3 ms 256 KB
02-04.txt WA 3 ms 256 KB
02-05.txt WA 940 ms 77312 KB
02-06.txt WA 260 ms 20992 KB
02-07.txt WA 123 ms 9216 KB
02-08.txt WA 3 ms 256 KB
sample-01.txt AC 3 ms 256 KB
sample-02.txt AC 3 ms 256 KB
sample-03.txt AC 3 ms 256 KB