結果

問題 No.1908 Assault for Keys
ユーザー first_vilfirst_vil
提出日時 2022-04-22 21:03:39
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 87,092 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2023-09-06 07:16:16
合計ジャッジ時間 4,060 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,388 KB
testcase_01 AC 72 ms
71,092 KB
testcase_02 AC 117 ms
77,624 KB
testcase_03 AC 116 ms
77,552 KB
testcase_04 AC 127 ms
77,904 KB
testcase_05 AC 127 ms
77,952 KB
testcase_06 AC 130 ms
77,688 KB
testcase_07 AC 125 ms
77,732 KB
testcase_08 AC 122 ms
77,800 KB
testcase_09 AC 126 ms
77,580 KB
testcase_10 AC 114 ms
77,416 KB
testcase_11 AC 119 ms
77,768 KB
testcase_12 AC 121 ms
77,780 KB
testcase_13 AC 119 ms
77,716 KB
testcase_14 AC 121 ms
77,424 KB
testcase_15 AC 115 ms
77,728 KB
testcase_16 AC 76 ms
71,440 KB
testcase_17 AC 86 ms
75,388 KB
testcase_18 AC 118 ms
77,624 KB
testcase_19 AC 108 ms
77,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
s=[input() for i in range(n)]
print(max([sum([s[i][j]=='x' for i in range(n)]) for j in range(m)])+1)
0