結果

問題 No.129 お年玉(2)
ユーザー data9824data9824
提出日時 2015-05-28 00:45:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 372 ms / 5,000 ms
コード長 1,100 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 63,948 KB
実行使用メモリ 217,856 KB
最終ジャッジ日時 2024-05-05 22:26:40
合計ジャッジ時間 6,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
15,360 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 44 ms
34,560 KB
testcase_06 AC 229 ms
147,712 KB
testcase_07 AC 237 ms
142,208 KB
testcase_08 AC 32 ms
25,856 KB
testcase_09 AC 210 ms
124,928 KB
testcase_10 AC 186 ms
117,248 KB
testcase_11 AC 188 ms
125,824 KB
testcase_12 AC 16 ms
16,768 KB
testcase_13 AC 11 ms
12,288 KB
testcase_14 AC 220 ms
146,816 KB
testcase_15 AC 190 ms
130,560 KB
testcase_16 AC 271 ms
169,856 KB
testcase_17 AC 143 ms
100,608 KB
testcase_18 AC 163 ms
111,232 KB
testcase_19 AC 55 ms
44,672 KB
testcase_20 AC 307 ms
190,080 KB
testcase_21 AC 172 ms
117,760 KB
testcase_22 AC 168 ms
107,776 KB
testcase_23 AC 215 ms
140,160 KB
testcase_24 AC 21 ms
20,992 KB
testcase_25 AC 230 ms
139,136 KB
testcase_26 AC 105 ms
66,816 KB
testcase_27 AC 103 ms
73,984 KB
testcase_28 AC 372 ms
217,856 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 5 ms
6,528 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 43 ms
34,432 KB
testcase_39 AC 38 ms
33,280 KB
testcase_40 AC 98 ms
70,784 KB
testcase_41 AC 111 ms
70,272 KB
testcase_42 AC 45 ms
32,512 KB
testcase_43 AC 15 ms
13,696 KB
testcase_44 AC 80 ms
56,320 KB
testcase_45 AC 23 ms
21,120 KB
testcase_46 AC 15 ms
14,720 KB
testcase_47 AC 152 ms
105,344 KB
testcase_48 AC 38 ms
32,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <cassert>

using namespace std;

static const long long MOD = 1000000000LL;
static int gcdValues[10001][10001] = { 0 };

int gcd(int x, int y) {
	if (gcdValues[x][y] != 0) {
		return gcdValues[x][y];
	}
	int result = y == 0 ? x : gcd(y, x % y);
	gcdValues[x][y] = result;
	gcdValues[y][x] = result;
	return result;
}

int main() {
	long long n, m;
	cin >> n >> m;
	long long win = n / 1000 % m;
	long long lose = m - win;
	vector<long long> numerators;
	for (long long i = max(win, lose) + 1; i <= m; ++i) {
		numerators.push_back(i);
	}
	for (long long i = min(win, lose); i >= 2; --i) {
		long long denominator = i;
		for (size_t k = 0; k < numerators.size() && denominator > 1; ++k) {
			long long divisor = gcd((int)numerators[k], (int)denominator);
			if (divisor > 1) {
				numerators[k] /= divisor;
				denominator /= divisor;
			}
		}
		assert(denominator == 1);
	}
	long long result = 1;
	for (size_t i = 0; i < numerators.size(); ++i) {
		result *= numerators[i];
		result %= MOD;
	}
	cout << result << endl;
	return 0;
}
0