結果

問題 No.2035 Tunnel
ユーザー rlangevinrlangevin
提出日時 2022-08-21 16:41:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 101,104 KB
最終ジャッジ日時 2024-10-10 06:15:14
合計ジャッジ時間 3,452 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,176 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 AC 36 ms
52,764 KB
testcase_03 AC 36 ms
52,696 KB
testcase_04 AC 37 ms
52,436 KB
testcase_05 AC 73 ms
99,808 KB
testcase_06 AC 75 ms
100,340 KB
testcase_07 AC 80 ms
101,104 KB
testcase_08 AC 68 ms
98,464 KB
testcase_09 AC 69 ms
98,584 KB
testcase_10 AC 71 ms
98,264 KB
testcase_11 AC 75 ms
93,100 KB
testcase_12 AC 80 ms
98,068 KB
testcase_13 AC 48 ms
66,160 KB
testcase_14 AC 55 ms
71,284 KB
testcase_15 AC 75 ms
94,188 KB
testcase_16 AC 67 ms
86,212 KB
testcase_17 AC 44 ms
62,096 KB
testcase_18 AC 48 ms
64,932 KB
testcase_19 AC 58 ms
75,212 KB
testcase_20 AC 73 ms
93,656 KB
testcase_21 AC 54 ms
75,360 KB
testcase_22 AC 55 ms
75,584 KB
testcase_23 AC 48 ms
66,000 KB
testcase_24 AC 59 ms
79,816 KB
testcase_25 AC 64 ms
86,556 KB
testcase_26 AC 62 ms
84,088 KB
testcase_27 AC 74 ms
96,772 KB
testcase_28 AC 58 ms
76,180 KB
testcase_29 AC 47 ms
66,996 KB
testcase_30 AC 47 ms
65,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def trans(c):
    if c == "#":
        return 1
    else:
        return 0

N = int(input())
S = list(input())
S = list(map(trans, S))

cnt = 0
ans = 0
for i in range(N - 1, -1, -1):
    if S[i]:
        ans = max(ans, N - i + cnt)
        cnt += 1
    else:
        cnt = max(0, cnt - 1)
print(ans)
    
0