Submission #615984


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

#define REPU(i, a, b) for (int i = (a); i < (b); ++i)
#define REPD(i, a, b) for (int i = (a); i > (b); --i)
#define MEM(a, x) memset(a, x, sizeof(a))
#define ALL(a) a.begin(), a.end()
#define UNIQUE(a) a.erase(unique(ALL(a)), a.end())

typedef long long ll;
const int MOD = 1000000007;

template<class T> inline T tmin(T a, T b) { return (a < b) ? a : b; }
template<class T> inline T tmax(T a, T b) { return (a > b) ? a : b; }
template<class T> inline void amax(T &a, T b) { if (b > a) a = b; }
template<class T> inline void amin(T &a, T b) { if (b < a) a = b; }
template<class T> inline T tabs(T a) { return (a > 0) ? a : -a; }
template<class T> T gcd(T a, T b) { while (b != 0) { T c = a; a = b; b = c % b; } return a; }

int main(int argc, char *argv[]) {
	ios_base::sync_with_stdio(false);
	
	int n;

	cin >> n;
	ll x = 0;
	vector<ll> a;
	while (true) {
		x = 100 * x + 25;
		REPU(i, 1, n / x + 1) a.push_back(i * x);
		if (x > n) break; 
	}

	if (a.size()) {
		sort(ALL(a)); UNIQUE(a);
	}

	cout << a.size() << endl;
	
	return 0;
}

Submission Info

Submission Time
Task A - ニコニコ数
User rantd
Language C++ (GCC 4.9.2)
Score 0
Code Size 1125 Byte
Status TLE
Exec Time 2593 ms
Memory 525232 KB

Judge Result

Set Name Sample Subtask1
Score / Max Score 0 / 0 0 / 60
Status
AC × 2
AC × 13
TLE × 4
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
Subtask1 sample_01.txt, sample_02.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt
Case Name Status Exec Time Memory
sample_01.txt AC 25 ms 792 KB
sample_02.txt AC 130 ms 9096 KB
test_01.txt AC 27 ms 728 KB
test_02.txt AC 27 ms 796 KB
test_03.txt AC 26 ms 920 KB
test_04.txt AC 27 ms 988 KB
test_05.txt AC 29 ms 1184 KB
test_06.txt AC 152 ms 9096 KB
test_07.txt AC 49 ms 2956 KB
test_08.txt TLE 2588 ms 525232 KB
test_09.txt TLE 2593 ms 525168 KB
test_10.txt TLE 2579 ms 263032 KB
test_11.txt TLE 2590 ms 525228 KB
test_12.txt AC 1487 ms 132024 KB
test_13.txt AC 151 ms 9104 KB
test_14.txt AC 26 ms 916 KB
test_15.txt AC 26 ms 804 KB