結果

問題 No.1908 Assault for Keys
ユーザー googol_S0googol_S0
提出日時 2022-04-22 21:01:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 71,060 KB
最終ジャッジ日時 2024-06-24 01:53:14
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,492 KB
testcase_01 AC 37 ms
53,192 KB
testcase_02 AC 70 ms
69,408 KB
testcase_03 AC 66 ms
69,408 KB
testcase_04 AC 68 ms
69,796 KB
testcase_05 AC 72 ms
70,952 KB
testcase_06 AC 74 ms
70,084 KB
testcase_07 AC 71 ms
71,060 KB
testcase_08 AC 66 ms
70,788 KB
testcase_09 AC 72 ms
69,592 KB
testcase_10 AC 66 ms
69,624 KB
testcase_11 AC 72 ms
70,396 KB
testcase_12 AC 68 ms
69,908 KB
testcase_13 AC 70 ms
70,056 KB
testcase_14 AC 68 ms
70,200 KB
testcase_15 AC 70 ms
70,372 KB
testcase_16 AC 38 ms
52,300 KB
testcase_17 AC 50 ms
61,388 KB
testcase_18 AC 73 ms
70,572 KB
testcase_19 AC 64 ms
68,976 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