結果

問題 No.1908 Assault for Keys
ユーザー gr1msl3ygr1msl3y
提出日時 2022-04-22 22:32:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 77,420 KB
最終ジャッジ日時 2023-09-06 09:07:45
合計ジャッジ時間 3,877 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,308 KB
testcase_01 AC 73 ms
71,576 KB
testcase_02 AC 105 ms
77,376 KB
testcase_03 AC 106 ms
77,292 KB
testcase_04 AC 106 ms
77,280 KB
testcase_05 AC 106 ms
77,252 KB
testcase_06 AC 109 ms
77,288 KB
testcase_07 AC 108 ms
77,032 KB
testcase_08 AC 105 ms
77,304 KB
testcase_09 AC 108 ms
77,420 KB
testcase_10 AC 105 ms
77,328 KB
testcase_11 AC 110 ms
77,404 KB
testcase_12 AC 107 ms
77,264 KB
testcase_13 AC 108 ms
77,200 KB
testcase_14 AC 104 ms
77,296 KB
testcase_15 AC 108 ms
77,184 KB
testcase_16 AC 72 ms
71,256 KB
testcase_17 AC 85 ms
75,276 KB
testcase_18 AC 111 ms
77,132 KB
testcase_19 AC 90 ms
76,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
ct=[0]*M
for _ in range(N):
    S=input()
    for j,s in enumerate(S):
        if s=='x':
            ct[j]+=1

print(max(ct)+1)
0