結果

問題 No.2035 Tunnel
ユーザー H20H20
提出日時 2022-08-12 21:41:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 92,464 KB
最終ジャッジ日時 2024-09-23 01:35:48
合計ジャッジ時間 2,907 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,820 KB
testcase_01 AC 38 ms
52,128 KB
testcase_02 AC 37 ms
52,820 KB
testcase_03 AC 38 ms
52,476 KB
testcase_04 AC 37 ms
52,496 KB
testcase_05 AC 75 ms
91,740 KB
testcase_06 AC 77 ms
92,196 KB
testcase_07 AC 76 ms
92,464 KB
testcase_08 AC 73 ms
91,900 KB
testcase_09 AC 56 ms
77,552 KB
testcase_10 AC 57 ms
76,224 KB
testcase_11 AC 74 ms
88,676 KB
testcase_12 AC 81 ms
91,616 KB
testcase_13 AC 47 ms
63,596 KB
testcase_14 AC 51 ms
67,696 KB
testcase_15 AC 75 ms
89,444 KB
testcase_16 AC 58 ms
77,160 KB
testcase_17 AC 44 ms
59,300 KB
testcase_18 AC 48 ms
63,532 KB
testcase_19 AC 53 ms
68,964 KB
testcase_20 AC 73 ms
88,916 KB
testcase_21 AC 51 ms
69,232 KB
testcase_22 AC 51 ms
69,408 KB
testcase_23 AC 47 ms
64,272 KB
testcase_24 AC 53 ms
73,736 KB
testcase_25 AC 55 ms
78,488 KB
testcase_26 AC 54 ms
75,188 KB
testcase_27 AC 75 ms
89,928 KB
testcase_28 AC 51 ms
71,280 KB
testcase_29 AC 46 ms
62,976 KB
testcase_30 AC 45 ms
62,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(input())[::-1]#混乱するから逆にする
ans=0
nowKeep = 0
for i,a in enumerate(A,start=1):
    if a=='#':
        ans = nowKeep+i
        nowKeep+=1
    else:
        nowKeep=max(0,nowKeep-1)
print(ans)


0