結果

問題 No.1908 Assault for Keys
ユーザー rlangevinrlangevin
提出日時 2024-12-18 08:52:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 71,248 KB
最終ジャッジ日時 2024-12-18 08:52:36
合計ジャッジ時間 2,859 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,796 KB
testcase_01 AC 34 ms
52,348 KB
testcase_02 AC 58 ms
69,148 KB
testcase_03 AC 53 ms
69,724 KB
testcase_04 AC 54 ms
70,436 KB
testcase_05 AC 60 ms
69,728 KB
testcase_06 AC 68 ms
70,260 KB
testcase_07 AC 60 ms
69,992 KB
testcase_08 AC 56 ms
70,188 KB
testcase_09 AC 59 ms
69,968 KB
testcase_10 AC 57 ms
69,540 KB
testcase_11 AC 61 ms
70,708 KB
testcase_12 AC 60 ms
70,328 KB
testcase_13 AC 59 ms
71,248 KB
testcase_14 AC 60 ms
69,768 KB
testcase_15 AC 60 ms
69,620 KB
testcase_16 AC 33 ms
52,740 KB
testcase_17 AC 43 ms
61,164 KB
testcase_18 AC 62 ms
70,128 KB
testcase_19 AC 51 ms
69,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
ans = [1] * M
for _ in range(N):
    s = input()
    for j in range(M):
        ans[j] += s[j] == "x"
        
print(max(ans))
0