結果

問題 No.129 お年玉(2)
ユーザー data9824data9824
提出日時 2015-05-28 00:45:24
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 348 ms / 5,000 ms
コード長 1,100 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 64,064 KB
実行使用メモリ 217,728 KB
最終ジャッジ日時 2024-11-27 23:48:53
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
15,488 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 38 ms
34,432 KB
testcase_06 AC 223 ms
147,456 KB
testcase_07 AC 208 ms
142,080 KB
testcase_08 AC 27 ms
25,984 KB
testcase_09 AC 187 ms
125,056 KB
testcase_10 AC 166 ms
117,120 KB
testcase_11 AC 189 ms
125,952 KB
testcase_12 AC 16 ms
16,512 KB
testcase_13 AC 11 ms
12,288 KB
testcase_14 AC 222 ms
146,816 KB
testcase_15 AC 194 ms
130,560 KB
testcase_16 AC 273 ms
169,984 KB
testcase_17 AC 139 ms
100,480 KB
testcase_18 AC 163 ms
111,360 KB
testcase_19 AC 53 ms
44,544 KB
testcase_20 AC 307 ms
190,208 KB
testcase_21 AC 172 ms
117,888 KB
testcase_22 AC 153 ms
107,776 KB
testcase_23 AC 217 ms
140,288 KB
testcase_24 AC 21 ms
20,736 KB
testcase_25 AC 220 ms
139,392 KB
testcase_26 AC 88 ms
66,816 KB
testcase_27 AC 97 ms
73,856 KB
testcase_28 AC 348 ms
217,728 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 4 ms
6,400 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 40 ms
34,304 KB
testcase_39 AC 38 ms
33,280 KB
testcase_40 AC 93 ms
70,656 KB
testcase_41 AC 93 ms
70,144 KB
testcase_42 AC 38 ms
32,384 KB
testcase_43 AC 12 ms
13,696 KB
testcase_44 AC 70 ms
56,448 KB
testcase_45 AC 22 ms
20,992 KB
testcase_46 AC 13 ms
14,720 KB
testcase_47 AC 146 ms
105,472 KB
testcase_48 AC 35 ms
32,768 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