結果

問題 No.1620 Substring Sum
ユーザー kotatsugamekotatsugame
提出日時 2021-08-09 23:33:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 66,560 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-09-21 23:18:17
合計ジャッジ時間 2,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,504 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,504 KB
testcase_03 AC 4 ms
5,504 KB
testcase_04 AC 9 ms
5,836 KB
testcase_05 AC 9 ms
5,708 KB
testcase_06 AC 10 ms
5,708 KB
testcase_07 AC 9 ms
5,704 KB
testcase_08 AC 10 ms
5,704 KB
testcase_09 AC 9 ms
5,760 KB
testcase_10 AC 9 ms
5,704 KB
testcase_11 AC 9 ms
5,632 KB
testcase_12 AC 5 ms
5,760 KB
testcase_13 AC 9 ms
5,708 KB
testcase_14 AC 9 ms
5,708 KB
testcase_15 AC 9 ms
5,712 KB
testcase_16 AC 7 ms
5,888 KB
testcase_17 AC 9 ms
5,712 KB
testcase_18 AC 4 ms
5,504 KB
testcase_19 AC 4 ms
5,504 KB
testcase_20 AC 9 ms
5,708 KB
testcase_21 AC 9 ms
5,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
string S;
mint p11[2<<17],p2[2<<17];
main()
{
	cin>>S;
	p11[0]=p2[0]=1;
	for(int i=1;i<S.size();i++)p11[i]=p11[i-1]*11,p2[i]=p2[i-1]*2;
	mint ans=0;
	for(int i=0;i<S.size();i++)ans+=(S[i]-'0')*p2[i]*p11[S.size()-i-1];
	cout<<ans.val()<<endl;
}
0