結果
問題 | No.1171 Runs in Subsequences |
ユーザー | opt |
提出日時 | 2020-07-15 15:20:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 952 bytes |
コンパイル時間 | 1,900 ms |
コンパイル使用メモリ | 202,024 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-11-21 22:21:00 |
合計ジャッジ時間 | 12,876 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
8,576 KB |
testcase_02 | AC | 2 ms
8,832 KB |
testcase_03 | WA | - |
testcase_04 | AC | 29 ms
10,496 KB |
testcase_05 | AC | 58 ms
5,248 KB |
testcase_06 | AC | 29 ms
5,248 KB |
testcase_07 | AC | 118 ms
5,248 KB |
testcase_08 | AC | 118 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep2(i, m, n) for(int i=int(m); i<int(n); ++i) #define rep(i, n) rep2(i, 0, n) const int MOD = int(1e9)+7; struct mint { ll x; mint(ll x=0) : x((x%MOD+MOD)%MOD) {} mint operator-() const { return mint(-x);} mint& operator+=(const mint a) { if ((x += a.x) >= MOD) x -= MOD; return *this; } mint& operator-=(const mint a) { if ((x -= a.x) < 0) x += MOD; return *this; } mint operator+(const mint a) const { return mint(*this) += a; } mint operator-(const mint a) const { return mint(*this) -= a; } }; ostream& operator<<(ostream& os, const mint& a) { return os << a.x; } int main() { const int M = 26; string s; cin >> s; int n = s.size(); int N = 1<<n; mint ans = 0; rep2(S, 1, N) { string t; rep(i, n) if (S>>i&1) t.push_back(s[i]); rep(i, t.size()-1) ans += (t[i] != t[i+1]); ans += 1; } cout << ans << "\n"; return 0; }