結果

問題 No.1908 Assault for Keys
ユーザー ytftytft
提出日時 2022-04-23 00:51:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 86,840 KB
実行使用メモリ 76,968 KB
最終ジャッジ日時 2023-09-06 11:48:57
合計ジャッジ時間 4,698 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,072 KB
testcase_01 AC 68 ms
71,280 KB
testcase_02 AC 104 ms
76,804 KB
testcase_03 AC 91 ms
76,696 KB
testcase_04 AC 91 ms
76,696 KB
testcase_05 AC 94 ms
76,644 KB
testcase_06 AC 97 ms
76,536 KB
testcase_07 AC 97 ms
76,696 KB
testcase_08 AC 90 ms
76,968 KB
testcase_09 AC 96 ms
76,752 KB
testcase_10 AC 90 ms
76,804 KB
testcase_11 AC 98 ms
76,740 KB
testcase_12 AC 96 ms
76,588 KB
testcase_13 AC 95 ms
76,588 KB
testcase_14 AC 95 ms
76,588 KB
testcase_15 AC 98 ms
76,584 KB
testcase_16 AC 76 ms
71,384 KB
testcase_17 AC 89 ms
75,244 KB
testcase_18 AC 104 ms
76,768 KB
testcase_19 AC 94 ms
76,580 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