結果
問題 | No.1908 Assault for Keys |
ユーザー | chineristAC |
提出日時 | 2021-09-19 18:23:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 228 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,128 KB |
実行使用メモリ | 73,968 KB |
最終ジャッジ日時 | 2024-11-27 07:54:11 |
合計ジャッジ時間 | 2,994 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
import sys,random N,M = map(int,input().split()) not_have = [0 for i in range(M)] for i in range(N): S = input().rstrip() for j in range(M): if S[j]=="x": not_have[j] += 1 print(max(not_have)+1)