結果

問題 No.341 沈黙の期間
ユーザー hrgnhrgn
提出日時 2019-03-06 01:37:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 515 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,552 KB
最終ジャッジ日時 2024-06-23 14:28:48
合計ジャッジ時間 10,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
44,036 KB
testcase_01 AC 506 ms
44,168 KB
testcase_02 AC 512 ms
44,296 KB
testcase_03 AC 511 ms
44,292 KB
testcase_04 AC 515 ms
44,044 KB
testcase_05 AC 504 ms
44,044 KB
testcase_06 AC 511 ms
44,024 KB
testcase_07 AC 505 ms
44,084 KB
testcase_08 AC 515 ms
44,044 KB
testcase_09 AC 498 ms
44,552 KB
testcase_10 AC 512 ms
44,076 KB
testcase_11 AC 505 ms
44,280 KB
testcase_12 AC 506 ms
44,040 KB
testcase_13 AC 489 ms
44,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

s = input()
lst = [-1] + [i for i in range(len(s)) if s[i] != "…"] + [len(s)]

print(max(np.diff(lst) - 1))

'''
"…"以外の文字の出現位置をlstに記録。
たとえばx, yがlstの連続要素だとすると
x+1文字目からy-1文字目までは"…"ということになる。
その長さは
(y-1)-(x+1)+1=y-x-1
'''
0