結果
問題 | No.940 ワープ ε=ε=ε=ε=ε=│;p>д<│ |
ユーザー | user1236 |
提出日時 | 2019-12-03 02:38:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,047 bytes |
コンパイル時間 | 561 ms |
コンパイル使用メモリ | 74,624 KB |
実行使用メモリ | 817,536 KB |
最終ジャッジ日時 | 2024-05-06 06:08:14 |
合計ジャッジ時間 | 2,416 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
// X 0 0 のとき // 0からXまで1ずつ進む路をX個用意して // 隣り合う路を繋げて1つにするかどうかで 2^(X-1) 通り // // X Y Z // X,Y,ZそれぞれをX,0,0 0,Y,0 0,0,Zとみなして // それぞれ連結したあとの路の数を Xc, Yc, Zc (Xc > Yc, Xc > Zc) // とすると Xの各路とそれらの間とで Xc+(Xc-1)個、それらからYc個選んでYc個の路をわりあてあてる // Xの路があるとこはX,Yの同時移動、Xの路のないとこはYのみ移動、となる // X路Y路XY路とそれらの間で構成されたとこにZc個選んで割り当てれば経路が1つできあがる #include <iostream> #include <algorithm> #define int long long using namespace std; int modpow(int,int); constexpr int M = 1e9 + 7; signed main() { int x[3]; cin >> x[0] >> x[1] >> x[2]; sort(x, x+3); cout << modpow(2, x[2]-1) << endl; } int modpow(int v, int p) { if (p == 0) return 1; if (p&1) return v * modpow(v, p - 1) % M; return modpow(v * v % M, p / 2); }