結果
| 問題 | No.3010 水色コーダーさん | 
| コンテスト | |
| ユーザー |  a01sa01to | 
| 提出日時 | 2025-01-26 00:13:59 | 
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 105 ms / 2,000 ms | 
| コード長 | 530 bytes | 
| コンパイル時間 | 2,957 ms | 
| コンパイル使用メモリ | 272,748 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2025-01-26 00:14:07 | 
| 合計ジャッジ時間 | 5,862 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 20 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
  int n, m;
  cin >> n >> m;
  int ans = 0;
  rep(_, n) {
    string s;
    int r;
    cin >> s >> r;
    if (r >= 1200) {
      int cnt = 0;
      for (int i = 0; i < 4; ++i)
        if (s[i] == 'x') ++cnt;
      if (cnt > 0) ++ans;
    }
  }
  cout << ans << endl;
  return 0;
}
            
            
            
        