結果

問題 No.1740 Alone 'a'
ユーザー mortalmortal
提出日時 2022-01-17 20:49:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 1,682 ms
コンパイル使用メモリ 166,296 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-05-02 19:03:04
合計ジャッジ時間 5,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,528 KB
testcase_01 AC 5 ms
6,656 KB
testcase_02 AC 5 ms
6,656 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 8 ms
7,296 KB
testcase_06 AC 8 ms
7,168 KB
testcase_07 AC 5 ms
6,656 KB
testcase_08 AC 4 ms
6,528 KB
testcase_09 AC 4 ms
6,528 KB
testcase_10 AC 4 ms
6,656 KB
testcase_11 AC 25 ms
10,112 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 5 ms
6,784 KB
testcase_16 WA -
testcase_17 AC 5 ms
6,784 KB
testcase_18 AC 19 ms
8,832 KB
testcase_19 WA -
testcase_20 AC 51 ms
14,592 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 52 ms
14,592 KB
testcase_25 AC 53 ms
14,720 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 60 ms
16,128 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 14 ms
9,344 KB
testcase_35 AC 57 ms
15,744 KB
testcase_36 AC 48 ms
14,336 KB
testcase_37 AC 21 ms
9,472 KB
testcase_38 AC 41 ms
13,312 KB
testcase_39 AC 10 ms
7,680 KB
testcase_40 AC 28 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define mod 998244353
ll dp[100005][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