結果
| 問題 |
No.3010 水色コーダーさん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-02-24 20:20:24 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 146 bytes |
| コンパイル時間 | 521 ms |
| コンパイル使用メモリ | 82,376 KB |
| 実行使用メモリ | 67,128 KB |
| 最終ジャッジ日時 | 2025-02-24 20:20:29 |
| 合計ジャッジ時間 | 4,696 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | WA * 20 |
ソースコード
N,M = map(int,input().split()) ans = 0 for _ in range(M): S,R = input().split() R = int(R) if R >= 1200 and S[:4] != "oooo":ans += 1 print(ans)