結果

問題 No.1740 Alone 'a'
ユーザー horitaka1999horitaka1999
提出日時 2021-11-12 22:50:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 70,656 KB
最終ジャッジ日時 2024-05-04 10:25:47
合計ジャッジ時間 4,440 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 234 ms
70,656 KB
testcase_04 AC 232 ms
70,272 KB
testcase_05 AC 49 ms
58,880 KB
testcase_06 AC 51 ms
59,264 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 51 ms
60,544 KB
testcase_12 AC 59 ms
67,072 KB
testcase_13 AC 60 ms
66,560 KB
testcase_14 AC 63 ms
68,608 KB
testcase_15 AC 47 ms
57,856 KB
testcase_16 AC 60 ms
66,048 KB
testcase_17 AC 46 ms
58,240 KB
testcase_18 AC 50 ms
59,904 KB
testcase_19 AC 60 ms
66,944 KB
testcase_20 AC 53 ms
62,720 KB
testcase_21 AC 68 ms
64,640 KB
testcase_22 AC 60 ms
65,664 KB
testcase_23 AC 58 ms
66,176 KB
testcase_24 AC 53 ms
63,232 KB
testcase_25 AC 54 ms
63,104 KB
testcase_26 AC 57 ms
64,128 KB
testcase_27 AC 56 ms
64,768 KB
testcase_28 AC 55 ms
63,872 KB
testcase_29 AC 64 ms
68,736 KB
testcase_30 AC 58 ms
64,512 KB
testcase_31 AC 58 ms
66,176 KB
testcase_32 AC 55 ms
64,000 KB
testcase_33 AC 57 ms
65,920 KB
testcase_34 AC 49 ms
60,544 KB
testcase_35 AC 54 ms
63,744 KB
testcase_36 AC 53 ms
62,848 KB
testcase_37 AC 49 ms
60,160 KB
testcase_38 AC 52 ms
62,208 KB
testcase_39 AC 47 ms
58,880 KB
testcase_40 AC 50 ms
60,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
store = set()
ans = 0
cnt = 0
mod = 998244353
def change(s):
    return ord(s) - ord('a') + 1
for i in  range(N):
    store.add(S[i])
    if S[i] == 'a':
        cnt += 1
    if cnt >= 2:
        continue
    if 'a' in store:
        tmp = (change(S[i]) -2) * pow(25,N-1-i,mod)
        if tmp > 0:
            ans += tmp
            ans %= mod
    else:
        if N -1 - i > 0:
            tmp = (change(S[i]) -2) * pow(25,N-1-i-1,mod) * (N-1-i)
            if tmp > 0:
                ans += tmp
                ans %= mod
        ans += pow(25,N-1-i,mod)
        ans %= mod
print(ans)

0