結果
問題 | No.44 DPなすごろく |
ユーザー | ku_material_ro |
提出日時 | 2016-10-23 19:42:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 583 bytes |
コンパイル時間 | 836 ms |
コンパイル使用メモリ | 71,124 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 04:55:10 |
合計ジャッジ時間 | 2,688 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | RE | - |
ソースコード
#include <iostream> #include <math.h> #include <string> #include <algorithm> using namespace std; int kaijo(int n){ long long ans = 1; if (n != 0){ for (int i = 0; i < n; i++){ ans *= (n - i); } } else{ ans = 1; } return ans; } int main(){ int n; int cnt1 = 0; int cnt2 = 0; long long cntp = 0; cin >> n; cnt2 = n / 2; if ((n / 2) * 2 == n){ cnt1 = 0; } else{ cnt1 = 1; } while (1){ if (cnt2 == 0) { cntp += 1; break; } cntp += kaijo(cnt2 + cnt1) / (kaijo(cnt1)*kaijo(cnt2)); cnt2 -= 1; cnt1 += 2; } cout << cntp << endl; return 0; }