結果
問題 | No.3010 水色コーダーさん |
ユーザー |
![]() |
提出日時 | 2025-01-25 12:31:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 197 ms / 2,000 ms |
コード長 | 194 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 77,184 KB |
最終ジャッジ日時 | 2025-01-25 22:02:40 |
合計ジャッジ時間 | 4,760 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
N,M=map(int,input().split()) result=0 for i in range(N): s,r=input().split() r=int(r) if r>=1200: c=0 for j in range(4): if s[j]=='x': c=1 result+=c print(result)