結果
問題 | No.420 mod2漸化式 |
ユーザー | femto |
提出日時 | 2016-09-09 22:49:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 1,034 bytes |
コンパイル時間 | 941 ms |
コンパイル使用メモリ | 89,324 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 18:04:10 |
合計ジャッジ時間 | 1,903 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 1 ms
6,944 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 1 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 1 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <fstream> #include <vector> #include <cstring> #include <string> #include <algorithm> #include <iomanip> #include <map> using namespace std; typedef long long ll; ll p[11] = { 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31 }; ll comb(int n, int x) { map<ll, int> m; for(int i = n; i >= n - x + 1; i--) { ll y = i; for(int j = 0; j < 11; j++) { while(y % p[j] == 0) { m[p[j]]++; y /= p[j]; } } } for(int i = 1; i <= x; i++) { ll y = i; for(int j = 0; j < 11; j++) { while(y % p[j] == 0) { m[p[j]]--; y /= p[j]; } } } ll ret = 1; for(auto v : m) { for(int i = 0; i < v.second; i++) { ret *= v.first; } } return ret; } int main() { cin.tie(0); ios::sync_with_stdio(false); ll x; cin >> x; if(x > 31) { cout << "0 0" << endl; return 0; } if(x == 0) { cout << "1 0" << endl; return 0; } ll ans1 = comb(31, x); ll ans2 = 0; for(int i = 0; i < 31; i++) { ans2 += (1LL << i) * comb(30, x - 1); } cout << ans1 << " " << ans2 << endl; }