結果
問題 | No.2298 yukicounter |
ユーザー | とろちゃ |
提出日時 | 2023-05-12 21:27:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 1,098 bytes |
コンパイル時間 | 917 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 65,120 KB |
最終ジャッジ日時 | 2024-11-28 17:18:18 |
合計ジャッジ時間 | 3,075 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
51,872 KB |
testcase_01 | AC | 34 ms
52,068 KB |
testcase_02 | AC | 33 ms
52,460 KB |
testcase_03 | AC | 48 ms
62,612 KB |
testcase_04 | AC | 42 ms
60,664 KB |
testcase_05 | AC | 38 ms
58,568 KB |
testcase_06 | AC | 54 ms
65,120 KB |
testcase_07 | AC | 40 ms
59,256 KB |
testcase_08 | AC | 39 ms
59,464 KB |
testcase_09 | AC | 39 ms
60,016 KB |
testcase_10 | AC | 37 ms
58,264 KB |
testcase_11 | AC | 40 ms
60,312 KB |
testcase_12 | AC | 39 ms
60,040 KB |
testcase_13 | AC | 41 ms
60,176 KB |
testcase_14 | AC | 41 ms
60,436 KB |
testcase_15 | AC | 34 ms
52,548 KB |
testcase_16 | AC | 39 ms
59,504 KB |
testcase_17 | AC | 41 ms
58,668 KB |
testcase_18 | AC | 34 ms
52,508 KB |
testcase_19 | AC | 34 ms
52,756 KB |
testcase_20 | AC | 34 ms
53,008 KB |
testcase_21 | AC | 35 ms
52,964 KB |
testcase_22 | AC | 40 ms
58,532 KB |
testcase_23 | AC | 40 ms
58,984 KB |
testcase_24 | AC | 48 ms
64,468 KB |
testcase_25 | AC | 42 ms
60,284 KB |
testcase_26 | AC | 39 ms
59,272 KB |
testcase_27 | AC | 44 ms
61,564 KB |
testcase_28 | AC | 38 ms
60,192 KB |
testcase_29 | AC | 37 ms
58,788 KB |
testcase_30 | AC | 34 ms
52,336 KB |
testcase_31 | AC | 37 ms
57,828 KB |
testcase_32 | AC | 37 ms
58,964 KB |
ソースコード
# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1") # from bisect import * # from collections import * # from heapq import * # from itertools import * # from math import * # from datetime import * # from decimal import* # from string import ascii_lowercase,ascii_uppercase # import numpy as np import sys import os # sys.setrecursionlimit(10**6) INF = 10**18 MOD = 998244353 # MOD = 10**9 + 7 File = open("input.txt", "r") if os.path.exists("input.txt") else sys.stdin def input(): return File.readline()[:-1] # /////////////////////////////////////////////////////////////////////////// S = input() S = S.replace("yukicoder", "0") def count_max_char(s, c): """ 文字列sに含まれる文字cの最大連続数を返す関数 s: 文字列 c: 検索する文字 """ count = 0 max_count = 0 for i in range(len(s)): if s[i] == c: count += 1 else: max_count = max(max_count, count) count = 0 max_count = max(max_count, count) return max_count cnt = count_max_char(S, "0") print(cnt)