結果

問題 No.1908 Assault for Keys
ユーザー 👑 KazunKazun
提出日時 2022-04-22 21:03:42
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 87,088 KB
実行使用メモリ 77,368 KB
最終ジャッジ日時 2023-09-06 07:16:20
合計ジャッジ時間 3,519 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,280 KB
testcase_01 AC 67 ms
71,312 KB
testcase_02 AC 109 ms
77,224 KB
testcase_03 AC 96 ms
77,108 KB
testcase_04 AC 96 ms
77,288 KB
testcase_05 AC 103 ms
77,284 KB
testcase_06 AC 103 ms
77,160 KB
testcase_07 AC 102 ms
77,264 KB
testcase_08 AC 97 ms
77,076 KB
testcase_09 AC 97 ms
77,220 KB
testcase_10 AC 96 ms
76,984 KB
testcase_11 AC 100 ms
77,148 KB
testcase_12 AC 99 ms
77,368 KB
testcase_13 AC 98 ms
77,068 KB
testcase_14 AC 95 ms
77,032 KB
testcase_15 AC 102 ms
77,048 KB
testcase_16 AC 65 ms
71,272 KB
testcase_17 AC 77 ms
75,268 KB
testcase_18 AC 102 ms
77,268 KB
testcase_19 AC 86 ms
76,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=[0]*M
for _ in range(N):
    S=input()
    for i,s in enumerate(S):
        if s=="x":
            A[i]+=1

print(max(A)+1)
0