結果
問題 | No.3010 水色コーダーさん |
ユーザー |
![]() |
提出日時 | 2025-01-25 12:32:47 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 162 ms / 2,000 ms |
コード長 | 182 bytes |
コンパイル時間 | 450 ms |
コンパイル使用メモリ | 82,552 KB |
実行使用メモリ | 76,444 KB |
最終ジャッジ日時 | 2025-01-25 22:03:25 |
合計ジャッジ時間 | 4,568 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
N,M = map(int,input().split()) Ans = 0 for _ in range(N): S,R = input().split() R = int(R) if R >= 1200: if S[:4].count("x") >= 1: Ans += 1 print(Ans)