結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,728 KB
testcase_01 AC 6 ms
9,728 KB
testcase_02 AC 6 ms
9,728 KB
testcase_03 AC 146 ms
28,652 KB
testcase_04 AC 148 ms
28,652 KB
testcase_05 AC 9 ms
10,240 KB
testcase_06 AC 8 ms
10,112 KB
testcase_07 AC 6 ms
9,728 KB
testcase_08 AC 6 ms
9,728 KB
testcase_09 AC 6 ms
9,728 KB
testcase_10 AC 6 ms
9,728 KB
testcase_11 AC 25 ms
13,056 KB
testcase_12 AC 84 ms
24,832 KB
testcase_13 AC 48 ms
24,064 KB
testcase_14 AC 97 ms
27,648 KB
testcase_15 AC 6 ms
9,856 KB
testcase_16 AC 77 ms
23,552 KB
testcase_17 AC 7 ms
9,856 KB
testcase_18 AC 17 ms
11,904 KB
testcase_19 AC 84 ms
25,088 KB
testcase_20 AC 49 ms
17,664 KB
testcase_21 AC 62 ms
20,736 KB
testcase_22 AC 74 ms
22,912 KB
testcase_23 AC 74 ms
22,784 KB
testcase_24 AC 46 ms
17,920 KB
testcase_25 AC 48 ms
17,920 KB
testcase_26 AC 60 ms
20,352 KB
testcase_27 AC 38 ms
21,120 KB
testcase_28 AC 54 ms
19,200 KB
testcase_29 AC 100 ms
27,776 KB
testcase_30 AC 41 ms
20,992 KB
testcase_31 AC 79 ms
23,296 KB
testcase_32 AC 56 ms
19,456 KB
testcase_33 AC 74 ms
23,040 KB
testcase_34 AC 14 ms
12,544 KB
testcase_35 AC 51 ms
18,944 KB
testcase_36 AC 44 ms
17,408 KB
testcase_37 AC 20 ms
12,544 KB
testcase_38 AC 38 ms
16,256 KB
testcase_39 AC 11 ms
10,752 KB
testcase_40 AC 27 ms
13,696 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