結果
問題 | No.498 ワープクリスタル (給料日編) |
ユーザー | kotamanegi |
提出日時 | 2017-03-24 23:31:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,808 bytes |
コンパイル時間 | 1,054 ms |
コンパイル使用メモリ | 106,288 KB |
実行使用メモリ | 64,596 KB |
最終ジャッジ日時 | 2024-07-06 00:14:40 |
合計ジャッジ時間 | 3,790 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 170 ms
64,500 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <algorithm> #include <utility> #include <functional> #include <cstring> #include <queue> #include <stack> #include <math.h> #include <iterator> #include <vector> #include <string> #include <set> #include <math.h> #include <iostream> #include<map> #include <iomanip> #include <time.h> #include <random> #include <stdlib.h> #include <list> #include <typeinfo> #include <list> #include <set> using namespace std; #define LONG_INF 10000000000000000 #define MAX_MOD 1000000007 #define REP(i,n) for(long long i = 0;i < n;++i) long long kaijo[10000] = {}; long long solve(long long n) { if (kaijo[n]) return kaijo[n]; return (n*solve(n - 1))%MAX_MOD; } long long gyaku[10000] = {}; int main() { gyaku[0] = 1; gyaku[1] = 1; for (int i = 2;i < 10000;++i) { gyaku[i] = gyaku[MAX_MOD%i] * (MAX_MOD - MAX_MOD / i) % MAX_MOD; } kaijo[1] = 1; int gx, gy, k; cin >> gx >> gy >> k; vector<vector<int>> wow[6]; vector<int> hoge; wow[0].push_back(hoge); vector<pair<int, int>> magic; for (int i = 0;i < k;++i) { int x, y, n; cin >> x >> y >> n; magic.push_back(make_pair(x, y)); for (int j = 0;j < wow[i].size();++j) { for (int q = 0;q <= n;++q) { vector<int> hogehoge = wow[i][j]; hogehoge.push_back(q); wow[i + 1].push_back(hogehoge); } } } long long ans = 0; for (int i = 0;i < wow[k].size();++i) { int xs=0, ys=0,sum=0; for (int j = 0;j < wow[k][i].size();++j) { xs += wow[k][i][j] * magic[j].first; ys += wow[k][i][j] * magic[j].second; sum += wow[k][i][j]; } if (xs == gx&&ys == gy) { long long nya = solve(sum); for (int j = 0;j < wow[k][i].size();++j) { nya *= gyaku[wow[k][i][j]]; nya %= MAX_MOD; } ans += nya; ans %= MAX_MOD; } } cout << ans << endl; return 0; }