結果
問題 | No.3010 水色コーダーさん |
ユーザー |
|
提出日時 | 2025-03-21 22:04:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 201 ms / 2,000 ms |
コード長 | 193 bytes |
コンパイル時間 | 433 ms |
コンパイル使用メモリ | 82,352 KB |
実行使用メモリ | 76,852 KB |
最終ジャッジ日時 | 2025-03-21 22:04:27 |
合計ジャッジ時間 | 6,582 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
N,M=(int(x) for x in input().split()) ans=0 for i in range(N): S,R=(str(x) for x in input().split()) if not (S[0] == S[1] == S[2] == S[3] == "o") and int(R) >= 1200: ans += 1 print(ans)