結果
| 問題 |
No.3010 水色コーダーさん
|
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2025-02-04 00:00:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 228 ms / 2,000 ms |
| コード長 | 164 bytes |
| コンパイル時間 | 305 ms |
| コンパイル使用メモリ | 81,792 KB |
| 実行使用メモリ | 76,416 KB |
| 最終ジャッジ日時 | 2025-02-04 00:00:31 |
| 合計ジャッジ時間 | 7,752 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
N, M = map(int, input().split())
ans = 0
for _ in range(N):
S, R = input().split()
if int(R) >= 1200 and S[:4].count('x') > 0:
ans += 1
print(ans)
norioc