結果
| 問題 |
No.3010 水色コーダーさん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-02-22 01:33:54 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 128 ms / 2,000 ms |
| コード長 | 322 bytes |
| コンパイル時間 | 3,481 ms |
| コンパイル使用メモリ | 273,960 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2025-02-22 01:34:01 |
| 合計ジャッジ時間 | 6,686 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m;
cin >> n >> m;
int cnt = 0;
for(int i=0; i<n; i++) {
string s;
int r;
cin >> s >> r;
if(r >= 1200) {
if(s[0] == 'x' || s[1] == 'x' || s[2] == 'x' || s[3] == 'x') {
cnt++;
}
}
}
cout << cnt << endl;
}