結果

問題 No.129 お年玉(2)
ユーザー data9824data9824
提出日時 2015-05-28 00:27:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 983 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 63,188 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 22:26:32
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 27 ms
5,376 KB
testcase_06 AC 215 ms
5,376 KB
testcase_07 AC 199 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 175 ms
5,376 KB
testcase_10 AC 157 ms
5,376 KB
testcase_11 AC 170 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 202 ms
5,376 KB
testcase_15 AC 176 ms
5,376 KB
testcase_16 AC 263 ms
5,376 KB
testcase_17 AC 118 ms
5,376 KB
testcase_18 AC 140 ms
5,376 KB
testcase_19 AC 35 ms
5,376 KB
testcase_20 AC 287 ms
5,376 KB
testcase_21 AC 146 ms
5,376 KB
testcase_22 AC 140 ms
5,376 KB
testcase_23 AC 211 ms
5,376 KB
testcase_24 AC 10 ms
5,376 KB
testcase_25 AC 209 ms
5,376 KB
testcase_26 AC 71 ms
5,376 KB
testcase_27 AC 84 ms
5,376 KB
testcase_28 AC 332 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 36 ms
5,376 KB
testcase_39 AC 29 ms
5,376 KB
testcase_40 AC 79 ms
5,376 KB
testcase_41 AC 84 ms
5,376 KB
testcase_42 AC 31 ms
5,376 KB
testcase_43 AC 7 ms
5,376 KB
testcase_44 AC 50 ms
5,376 KB
testcase_45 AC 16 ms
5,376 KB
testcase_46 AC 8 ms
5,376 KB
testcase_47 AC 129 ms
5,376 KB
testcase_48 AC 21 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

static const long long MOD = 1000000000LL;

long long gcd(long long x, long long y) {
	do {
		if (x < y) {
			std::swap(x, y);
		}
		x = x % y;
	} while (x > 0LL);
	return y;
}

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(numerators[k], 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