結果

問題 No.1908 Assault for Keys
ユーザー googol_S0googol_S0
提出日時 2022-04-22 21:01:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 87,128 KB
実行使用メモリ 76,952 KB
最終ジャッジ日時 2023-09-06 07:13:16
合計ジャッジ時間 3,910 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,436 KB
testcase_01 AC 68 ms
71,536 KB
testcase_02 AC 100 ms
76,496 KB
testcase_03 AC 92 ms
76,636 KB
testcase_04 AC 96 ms
76,680 KB
testcase_05 AC 100 ms
76,628 KB
testcase_06 AC 96 ms
76,612 KB
testcase_07 AC 102 ms
76,372 KB
testcase_08 AC 98 ms
76,788 KB
testcase_09 AC 103 ms
76,544 KB
testcase_10 AC 92 ms
76,700 KB
testcase_11 AC 100 ms
76,500 KB
testcase_12 AC 98 ms
76,640 KB
testcase_13 AC 103 ms
76,924 KB
testcase_14 AC 97 ms
76,680 KB
testcase_15 AC 100 ms
76,952 KB
testcase_16 AC 67 ms
71,328 KB
testcase_17 AC 79 ms
75,260 KB
testcase_18 AC 96 ms
76,348 KB
testcase_19 AC 88 ms
76,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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