結果

問題 No.1908 Assault for Keys
ユーザー ytftytft
提出日時 2022-04-23 00:51:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-06-24 06:25:42
合計ジャッジ時間 2,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 71 ms
69,248 KB
testcase_03 AC 64 ms
69,632 KB
testcase_04 AC 65 ms
69,248 KB
testcase_05 AC 66 ms
69,248 KB
testcase_06 AC 70 ms
69,248 KB
testcase_07 AC 70 ms
69,504 KB
testcase_08 AC 62 ms
69,248 KB
testcase_09 AC 68 ms
69,596 KB
testcase_10 AC 64 ms
69,760 KB
testcase_11 AC 69 ms
69,248 KB
testcase_12 AC 64 ms
69,248 KB
testcase_13 AC 66 ms
69,376 KB
testcase_14 AC 66 ms
69,760 KB
testcase_15 AC 67 ms
69,248 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 50 ms
61,056 KB
testcase_18 AC 69 ms
69,248 KB
testcase_19 AC 59 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
count=[0 for i in range(M)]
for i in range(N):
	S=input()
	for j in range(M):
		count[j]+=S[j]=='x'
print(max(count)+1)
0