結果

問題 No.1740 Alone 'a'
ユーザー kotatsugamekotatsugame
提出日時 2021-11-12 21:35:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 1,043 ms
コンパイル使用メモリ 68,404 KB
実行使用メモリ 7,900 KB
最終ジャッジ日時 2024-05-04 07:37:29
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,528 KB
testcase_01 AC 3 ms
7,500 KB
testcase_02 AC 4 ms
7,588 KB
testcase_03 AC 53 ms
7,756 KB
testcase_04 AC 59 ms
7,880 KB
testcase_05 AC 5 ms
7,576 KB
testcase_06 AC 5 ms
7,496 KB
testcase_07 AC 5 ms
7,692 KB
testcase_08 AC 4 ms
7,396 KB
testcase_09 AC 3 ms
7,544 KB
testcase_10 AC 3 ms
7,624 KB
testcase_11 AC 11 ms
7,684 KB
testcase_12 AC 37 ms
7,760 KB
testcase_13 AC 34 ms
7,868 KB
testcase_14 AC 43 ms
7,776 KB
testcase_15 AC 4 ms
7,548 KB
testcase_16 AC 34 ms
7,788 KB
testcase_17 AC 3 ms
7,440 KB
testcase_18 AC 9 ms
7,536 KB
testcase_19 AC 37 ms
7,780 KB
testcase_20 AC 21 ms
7,868 KB
testcase_21 AC 28 ms
7,644 KB
testcase_22 AC 32 ms
7,888 KB
testcase_23 AC 31 ms
7,708 KB
testcase_24 AC 20 ms
7,840 KB
testcase_25 AC 20 ms
7,712 KB
testcase_26 AC 25 ms
7,740 KB
testcase_27 AC 27 ms
7,812 KB
testcase_28 AC 23 ms
7,892 KB
testcase_29 AC 40 ms
7,884 KB
testcase_30 AC 26 ms
7,612 KB
testcase_31 AC 30 ms
7,816 KB
testcase_32 AC 23 ms
7,828 KB
testcase_33 AC 30 ms
7,880 KB
testcase_34 AC 9 ms
7,560 KB
testcase_35 AC 23 ms
7,900 KB
testcase_36 AC 19 ms
7,736 KB
testcase_37 AC 9 ms
7,608 KB
testcase_38 AC 16 ms
7,876 KB
testcase_39 AC 5 ms
7,596 KB
testcase_40 AC 12 ms
7,796 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