結果

問題 No.2035 Tunnel
ユーザー KudeKude
提出日時 2022-08-12 21:36:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 76,248 KB
最終ジャッジ日時 2024-09-23 01:21:47
合計ジャッジ時間 2,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,460 KB
testcase_01 AC 38 ms
52,976 KB
testcase_02 AC 36 ms
53,028 KB
testcase_03 AC 37 ms
52,328 KB
testcase_04 AC 37 ms
52,824 KB
testcase_05 AC 56 ms
75,840 KB
testcase_06 AC 57 ms
75,992 KB
testcase_07 AC 57 ms
76,108 KB
testcase_08 AC 53 ms
75,888 KB
testcase_09 AC 47 ms
61,976 KB
testcase_10 AC 47 ms
61,460 KB
testcase_11 AC 58 ms
75,560 KB
testcase_12 AC 59 ms
75,860 KB
testcase_13 AC 44 ms
61,828 KB
testcase_14 AC 46 ms
65,728 KB
testcase_15 AC 57 ms
76,248 KB
testcase_16 AC 50 ms
72,444 KB
testcase_17 AC 41 ms
59,520 KB
testcase_18 AC 43 ms
60,376 KB
testcase_19 AC 47 ms
66,516 KB
testcase_20 AC 56 ms
75,968 KB
testcase_21 AC 46 ms
65,896 KB
testcase_22 AC 47 ms
67,496 KB
testcase_23 AC 44 ms
62,716 KB
testcase_24 AC 47 ms
69,632 KB
testcase_25 AC 50 ms
72,904 KB
testcase_26 AC 49 ms
70,920 KB
testcase_27 AC 57 ms
75,624 KB
testcase_28 AC 46 ms
68,580 KB
testcase_29 AC 43 ms
60,976 KB
testcase_30 AC 44 ms
62,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()[::-1]
last = -2
for i, c in enumerate(s):
    if c == '#':
        last = max(i, last + 2)
print(last + 1)
0