結果

問題 No.1740 Alone 'a'
ユーザー mortalmortal
提出日時 2022-01-17 20:50:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 1,502 ms
コンパイル使用メモリ 167,868 KB
実行使用メモリ 28,652 KB
最終ジャッジ日時 2024-11-23 12:59:55
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,728 KB
testcase_01 AC 4 ms
9,600 KB
testcase_02 AC 4 ms
9,600 KB
testcase_03 AC 158 ms
28,652 KB
testcase_04 AC 158 ms
28,528 KB
testcase_05 AC 8 ms
10,368 KB
testcase_06 AC 8 ms
10,112 KB
testcase_07 AC 4 ms
9,768 KB
testcase_08 AC 4 ms
9,676 KB
testcase_09 AC 4 ms
9,712 KB
testcase_10 AC 4 ms
9,600 KB
testcase_11 AC 23 ms
13,056 KB
testcase_12 AC 90 ms
25,032 KB
testcase_13 AC 51 ms
24,192 KB
testcase_14 AC 106 ms
27,776 KB
testcase_15 AC 5 ms
9,856 KB
testcase_16 AC 81 ms
23,544 KB
testcase_17 AC 5 ms
9,856 KB
testcase_18 AC 16 ms
12,032 KB
testcase_19 AC 90 ms
25,168 KB
testcase_20 AC 48 ms
17,672 KB
testcase_21 AC 64 ms
20,480 KB
testcase_22 AC 77 ms
22,784 KB
testcase_23 AC 76 ms
22,784 KB
testcase_24 AC 49 ms
17,896 KB
testcase_25 AC 50 ms
17,920 KB
testcase_26 AC 65 ms
20,288 KB
testcase_27 AC 41 ms
21,120 KB
testcase_28 AC 57 ms
19,072 KB
testcase_29 AC 105 ms
27,776 KB
testcase_30 AC 41 ms
21,000 KB
testcase_31 AC 79 ms
23,168 KB
testcase_32 AC 59 ms
19,328 KB
testcase_33 AC 77 ms
23,072 KB
testcase_34 AC 13 ms
12,544 KB
testcase_35 AC 55 ms
18,816 KB
testcase_36 AC 47 ms
17,388 KB
testcase_37 AC 20 ms
12,556 KB
testcase_38 AC 38 ms
16,312 KB
testcase_39 AC 10 ms
10,692 KB
testcase_40 AC 26 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define mod 998244353
ll dp[200005][2][2];
string s;
int n;
ll solve(int pos,bool used,bool small){
	if(pos==n){
		return (ll)(used&&small);

	}
	if(dp[pos][used][small]!=-1)
		return dp[pos][used][small];
	ll ans=0;

	char r=small?'z':s[pos];
	char l='a';
	if(used)
		l++;
	for(char c=l;c<=r;c++){
		ans+=solve(pos+1,(c=='a')|used,small|(c<r));
		ans%=mod;
	}
	return dp[pos][used][small]=ans;



}

int main() {
	cin >> n >> s;
	
	memset(dp,-1,sizeof(dp));
	cout<<solve(0,0,0);
	
	
}
0