結果
問題 | No.1126 SUM |
ユーザー | misora192 |
提出日時 | 2020-07-29 23:08:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 42 ms / 1,000 ms |
コード長 | 883 bytes |
コンパイル時間 | 1,456 ms |
コンパイル使用メモリ | 166,228 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-30 12:36:06 |
合計ジャッジ時間 | 2,797 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
5,248 KB |
testcase_01 | AC | 18 ms
5,376 KB |
testcase_02 | AC | 11 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 18 ms
5,376 KB |
testcase_05 | AC | 16 ms
5,376 KB |
testcase_06 | AC | 13 ms
5,376 KB |
testcase_07 | AC | 27 ms
5,376 KB |
testcase_08 | AC | 25 ms
5,376 KB |
testcase_09 | AC | 22 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 27 ms
5,376 KB |
testcase_12 | AC | 31 ms
5,376 KB |
testcase_13 | AC | 18 ms
5,376 KB |
testcase_14 | AC | 7 ms
5,376 KB |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | AC | 24 ms
5,376 KB |
testcase_17 | AC | 10 ms
5,376 KB |
testcase_18 | AC | 22 ms
5,376 KB |
testcase_19 | AC | 13 ms
5,376 KB |
testcase_20 | AC | 14 ms
5,376 KB |
testcase_21 | AC | 12 ms
5,376 KB |
testcase_22 | AC | 13 ms
5,376 KB |
testcase_23 | AC | 22 ms
5,376 KB |
testcase_24 | AC | 24 ms
5,376 KB |
testcase_25 | AC | 42 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=(0);i<(n);i++) using namespace std; typedef long long ll; template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } const ll MOD = 1e9 + 7; ll powmod(ll a, ll b){ if(b == 0) return 1; if(b & 1) { return a * powmod(a, b - 1) % MOD; } else { ll d = powmod(a, b / 2) % MOD; return d * d % MOD; } } ll sub(ll a, ll b){ return a + MOD - b; } ll inv(ll a){ return powmod(a, MOD - 2); } int main(){ cin.tie(0); ios::sync_with_stdio(false); ll n, m; cin >> n >> m; ll ans = 0ll; ll t = 1ll; for(ll i = n; i <= m; i++){ ans += t; ans %= MOD; t *= (i+1); t %= MOD; t *= inv(i - n + 1); t %= MOD; } cout << ans << endl; }