結果

問題 No.1908 Assault for Keys
ユーザー tobusakanatobusakana
提出日時 2022-05-01 23:55:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 70,936 KB
最終ジャッジ日時 2024-07-01 01:37:55
合計ジャッジ時間 2,738 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,872 KB
testcase_01 AC 37 ms
52,264 KB
testcase_02 AC 64 ms
70,496 KB
testcase_03 AC 61 ms
70,584 KB
testcase_04 AC 61 ms
69,776 KB
testcase_05 AC 63 ms
70,936 KB
testcase_06 AC 65 ms
70,644 KB
testcase_07 AC 63 ms
70,796 KB
testcase_08 AC 61 ms
69,640 KB
testcase_09 AC 65 ms
69,432 KB
testcase_10 AC 60 ms
70,140 KB
testcase_11 AC 66 ms
69,892 KB
testcase_12 AC 62 ms
70,232 KB
testcase_13 AC 66 ms
69,088 KB
testcase_14 AC 62 ms
70,536 KB
testcase_15 AC 65 ms
70,076 KB
testcase_16 AC 38 ms
52,380 KB
testcase_17 AC 51 ms
61,720 KB
testcase_18 AC 67 ms
69,632 KB
testcase_19 AC 56 ms
69,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
xnum = [0] * M

for i in range(N):
    s = input()
    for j in range(M):
        if s[j] == "x":
            xnum[j] += 1
            
print(max(xnum) + 1)
0