結果
問題 | No.3010 水色コーダーさん |
ユーザー |
👑 |
提出日時 | 2025-01-19 13:10:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 177 ms / 2,000 ms |
コード長 | 180 bytes |
コンパイル時間 | 1,823 ms |
コンパイル使用メモリ | 81,592 KB |
実行使用メモリ | 76,416 KB |
最終ジャッジ日時 | 2025-01-25 21:48:41 |
合計ジャッジ時間 | 5,868 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
N, M = map(int, input().split())ans = 0for _ in range(N):result, rating = input().split()if result[:4] != "oooo" and int(rating) >= 1200:ans += 1print(ans)