結果
問題 | No.3010 水色コーダーさん |
ユーザー |
![]() |
提出日時 | 2025-01-25 12:36:36 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 112 ms / 2,000 ms |
コード長 | 247 bytes |
コンパイル時間 | 532 ms |
コンパイル使用メモリ | 66,816 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2025-01-25 22:15:07 |
合計ジャッジ時間 | 3,361 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <iostream> int main(){ int N, M, R, ans = 0; std::cin >> N >> M; std::string S, correct; while(N--){ std::cin >> S >> R; if(R >= 1200 && (S.substr(0, 4) != "oooo")){ ans ++; } } std::cout << ans << std::endl; return 0; }