結果

問題 No.886 Direct
ユーザー pockynypockyny
提出日時 2019-09-23 17:23:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 453 ms / 4,000 ms
コード長 945 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 74,188 KB
最終ジャッジ日時 2024-09-19 04:28:09
合計ジャッジ時間 15,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
73,960 KB
testcase_01 AC 343 ms
74,064 KB
testcase_02 AC 339 ms
73,960 KB
testcase_03 AC 339 ms
74,064 KB
testcase_04 AC 345 ms
73,944 KB
testcase_05 AC 339 ms
74,068 KB
testcase_06 AC 334 ms
74,068 KB
testcase_07 AC 321 ms
73,992 KB
testcase_08 AC 318 ms
73,940 KB
testcase_09 AC 342 ms
74,188 KB
testcase_10 AC 325 ms
74,088 KB
testcase_11 AC 316 ms
74,068 KB
testcase_12 AC 343 ms
74,068 KB
testcase_13 AC 347 ms
74,068 KB
testcase_14 AC 329 ms
74,016 KB
testcase_15 AC 339 ms
74,004 KB
testcase_16 AC 338 ms
74,016 KB
testcase_17 AC 337 ms
74,032 KB
testcase_18 AC 349 ms
73,940 KB
testcase_19 AC 357 ms
73,988 KB
testcase_20 AC 360 ms
74,072 KB
testcase_21 AC 346 ms
73,940 KB
testcase_22 AC 332 ms
73,940 KB
testcase_23 AC 441 ms
74,016 KB
testcase_24 AC 438 ms
73,920 KB
testcase_25 AC 432 ms
74,136 KB
testcase_26 AC 346 ms
74,128 KB
testcase_27 AC 376 ms
74,080 KB
testcase_28 AC 340 ms
74,032 KB
testcase_29 AC 376 ms
74,068 KB
testcase_30 AC 366 ms
73,940 KB
testcase_31 AC 342 ms
73,952 KB
testcase_32 AC 328 ms
74,068 KB
testcase_33 AC 335 ms
73,936 KB
testcase_34 AC 325 ms
74,068 KB
testcase_35 AC 453 ms
74,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
typedef long long ll;
const int MAX = 1000010;
constexpr ll mod = 1000000007;
vector<ll> gcd_trans(vector<ll> &v){
	int i,j,n = v.size();
	vector<bool> used(n,true);
	for(i=2;i<n;i++){
		if(!used[i]) continue;
		for(j=(n - 1)/i;j>=1;j--){
			used[j*i] = false;
			(v[j] += v[j*i]) %= mod;
		}
	}
	return v;
}

vector<ll> inv_gcd_trans(vector<ll> &v){
	int i,j,n = v.size();
	vector<bool> used(n,true);
	for(i=2;i<n;i++){
		if(!used[i]) continue;
		for(j=1;j*i<n;j++){
			used[j*i] = false;
			(v[j] += mod - v[j*i]) %= mod;
		}
	}
	return v;
}
vector<ll> a(3*MAX),b(3*MAX);
int main(){
	ll i,h,w;
	cin >> h >> w;
	for(i=1;i<h;i++){
		a[i] = h - i;
	}
	for(i=1;i<w;i++){
		b[i] = w - i;
	}
	a = gcd_trans(a),b = gcd_trans(b);
	for(i=0;i<a.size();i++){
		(a[i] *= b[i]) %= mod;
	}
	b = inv_gcd_trans(a);
	ll ans = (2*b[1]%mod + h*(w - 1)%mod + w*(h - 1)%mod)%mod;
	cout << ans << endl;
}
0