結果
問題 | No.3010 水色コーダーさん |
ユーザー |
![]() |
提出日時 | 2025-01-24 19:57:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 358 ms / 2,000 ms |
コード長 | 136 bytes |
コンパイル時間 | 630 ms |
コンパイル使用メモリ | 82,408 KB |
実行使用メモリ | 76,668 KB |
最終ジャッジ日時 | 2025-01-25 22:01:33 |
合計ジャッジ時間 | 6,746 ms |
ジャッジサーバーID (参考情報) |
judge10 / judge7 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
N,M=map(int,input().split()) c=0 for _ in range(N): r,s=input().split() if 'x' in r[:4] and int(s)>=1200: c+=1 print(c)