結果

問題 No.1740 Alone 'a'
ユーザー kotatsugamekotatsugame
提出日時 2021-11-12 21:35:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 69,008 KB
実行使用メモリ 7,940 KB
最終ジャッジ日時 2024-11-25 17:22:40
合計ジャッジ時間 2,627 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,448 KB
testcase_01 AC 4 ms
7,552 KB
testcase_02 AC 4 ms
7,568 KB
testcase_03 AC 56 ms
7,760 KB
testcase_04 AC 52 ms
7,692 KB
testcase_05 AC 6 ms
7,584 KB
testcase_06 AC 4 ms
7,392 KB
testcase_07 AC 4 ms
7,536 KB
testcase_08 AC 4 ms
7,484 KB
testcase_09 AC 4 ms
7,520 KB
testcase_10 AC 3 ms
7,536 KB
testcase_11 AC 11 ms
7,668 KB
testcase_12 AC 34 ms
7,628 KB
testcase_13 AC 33 ms
7,712 KB
testcase_14 AC 39 ms
7,780 KB
testcase_15 AC 3 ms
7,724 KB
testcase_16 AC 31 ms
7,756 KB
testcase_17 AC 3 ms
7,600 KB
testcase_18 AC 8 ms
7,480 KB
testcase_19 AC 34 ms
7,684 KB
testcase_20 AC 19 ms
7,744 KB
testcase_21 AC 25 ms
7,860 KB
testcase_22 AC 30 ms
7,832 KB
testcase_23 AC 30 ms
7,664 KB
testcase_24 AC 19 ms
7,824 KB
testcase_25 AC 20 ms
7,756 KB
testcase_26 AC 24 ms
7,764 KB
testcase_27 AC 26 ms
7,940 KB
testcase_28 AC 23 ms
7,684 KB
testcase_29 AC 39 ms
7,684 KB
testcase_30 AC 27 ms
7,824 KB
testcase_31 AC 30 ms
7,756 KB
testcase_32 AC 23 ms
7,808 KB
testcase_33 AC 30 ms
7,756 KB
testcase_34 AC 9 ms
7,620 KB
testcase_35 AC 22 ms
7,836 KB
testcase_36 AC 19 ms
7,588 KB
testcase_37 AC 10 ms
7,576 KB
testcase_38 AC 16 ms
7,712 KB
testcase_39 AC 6 ms
7,508 KB
testcase_40 AC 11 ms
7,636 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][1][1].val()<<endl;
}
0