結果

問題 No.1908 Assault for Keys
ユーザー shotoyooshotoyoo
提出日時 2022-04-22 21:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 70,632 KB
最終ジャッジ日時 2024-06-24 03:09:22
合計ジャッジ時間 2,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,452 KB
testcase_01 AC 43 ms
54,672 KB
testcase_02 AC 65 ms
68,768 KB
testcase_03 AC 62 ms
69,212 KB
testcase_04 AC 61 ms
70,632 KB
testcase_05 AC 65 ms
70,240 KB
testcase_06 AC 69 ms
69,944 KB
testcase_07 AC 66 ms
69,496 KB
testcase_08 AC 61 ms
69,348 KB
testcase_09 AC 67 ms
69,956 KB
testcase_10 AC 61 ms
69,544 KB
testcase_11 AC 66 ms
69,784 KB
testcase_12 AC 61 ms
69,216 KB
testcase_13 AC 64 ms
69,028 KB
testcase_14 AC 64 ms
70,104 KB
testcase_15 AC 64 ms
69,648 KB
testcase_16 AC 42 ms
55,596 KB
testcase_17 AC 46 ms
56,632 KB
testcase_18 AC 68 ms
69,628 KB
testcase_19 AC 55 ms
68,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); inf=10**18
LI = lambda : list(map(int, input().split()))
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]
sys.setrecursionlimit(3*10**5+10)

n,m = list(map(int, input().split()))
count = [0]*m
for i in range(n):
    s = input()
    for j in range(m):
        if s[j]=="x":
            count[j] += 1
ans = max(count) + 1
print(ans)
0