結果

問題 No.2035 Tunnel
ユーザー lloyzlloyz
提出日時 2022-08-13 00:55:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 77,484 KB
最終ジャッジ日時 2024-09-23 05:17:17
合計ジャッジ時間 2,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,312 KB
testcase_01 AC 38 ms
51,876 KB
testcase_02 AC 37 ms
52,236 KB
testcase_03 AC 37 ms
53,056 KB
testcase_04 AC 38 ms
52,776 KB
testcase_05 AC 58 ms
76,600 KB
testcase_06 AC 59 ms
76,516 KB
testcase_07 AC 58 ms
77,484 KB
testcase_08 AC 56 ms
77,472 KB
testcase_09 AC 55 ms
76,884 KB
testcase_10 AC 57 ms
76,608 KB
testcase_11 AC 58 ms
73,932 KB
testcase_12 AC 60 ms
76,796 KB
testcase_13 AC 45 ms
61,412 KB
testcase_14 AC 47 ms
63,596 KB
testcase_15 AC 59 ms
75,656 KB
testcase_16 AC 54 ms
71,076 KB
testcase_17 AC 42 ms
59,144 KB
testcase_18 AC 44 ms
59,972 KB
testcase_19 AC 48 ms
64,524 KB
testcase_20 AC 57 ms
73,256 KB
testcase_21 AC 47 ms
65,300 KB
testcase_22 AC 48 ms
65,492 KB
testcase_23 AC 42 ms
60,864 KB
testcase_24 AC 50 ms
67,640 KB
testcase_25 AC 53 ms
70,260 KB
testcase_26 AC 51 ms
69,980 KB
testcase_27 AC 57 ms
74,808 KB
testcase_28 AC 48 ms
65,792 KB
testcase_29 AC 44 ms
61,020 KB
testcase_30 AC 44 ms
61,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = list(input())

S = S[::-1]
ans = -1
for i in range(n):
    if S[i] == '#':
        x = i + 1
        ans = max(ans + 2, x)
print(ans)
0