結果

問題 No.1740 Alone 'a'
ユーザー kotatsugamekotatsugame
提出日時 2021-11-12 21:34:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 69,020 KB
実行使用メモリ 7,968 KB
最終ジャッジ日時 2024-05-04 07:35:55
合計ジャッジ時間 2,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 4 ms
7,548 KB
testcase_02 AC 3 ms
7,596 KB
testcase_03 AC 51 ms
7,968 KB
testcase_04 AC 53 ms
7,844 KB
testcase_05 AC 4 ms
7,552 KB
testcase_06 AC 4 ms
7,540 KB
testcase_07 AC 3 ms
7,568 KB
testcase_08 AC 3 ms
7,508 KB
testcase_09 WA -
testcase_10 AC 3 ms
7,668 KB
testcase_11 AC 10 ms
7,568 KB
testcase_12 AC 33 ms
7,880 KB
testcase_13 AC 32 ms
7,888 KB
testcase_14 AC 41 ms
7,760 KB
testcase_15 AC 4 ms
7,440 KB
testcase_16 AC 31 ms
7,864 KB
testcase_17 AC 4 ms
7,620 KB
testcase_18 AC 8 ms
7,448 KB
testcase_19 AC 33 ms
7,840 KB
testcase_20 AC 19 ms
7,908 KB
testcase_21 AC 25 ms
7,948 KB
testcase_22 AC 29 ms
7,764 KB
testcase_23 AC 30 ms
7,840 KB
testcase_24 AC 21 ms
7,948 KB
testcase_25 AC 20 ms
7,800 KB
testcase_26 AC 25 ms
7,888 KB
testcase_27 AC 26 ms
7,840 KB
testcase_28 AC 22 ms
7,812 KB
testcase_29 AC 41 ms
7,756 KB
testcase_30 AC 28 ms
7,788 KB
testcase_31 AC 32 ms
7,760 KB
testcase_32 AC 24 ms
7,824 KB
testcase_33 AC 31 ms
7,644 KB
testcase_34 AC 9 ms
7,616 KB
testcase_35 AC 22 ms
7,772 KB
testcase_36 AC 18 ms
7,740 KB
testcase_37 AC 9 ms
7,660 KB
testcase_38 AC 15 ms
7,656 KB
testcase_39 AC 5 ms
7,748 KB
testcase_40 AC 11 ms
7,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N;
string S;
mint dp[2<<17][2][2];
main()
{
	cin>>N>>S;
	dp[0][0][0]=1;
	for(int i=0;i<N;i++)
	{
		char c=S[i];
		for(int j=0;j<2;j++)for(int k=0;k<2;k++)
		{
			char lim=j?'z':c;
			for(char t=k?'b':'a';t<=lim;t++)
			{
				dp[i+1][j|t<lim][k|t=='a']+=dp[i][j][k];
			}
		}
	}
	cout<<(dp[N][0][1]+dp[N][1][1]).val()<<endl;
}
0