結果
| 問題 |
No.3010 水色コーダーさん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-01-25 19:36:23 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 651 ms / 2,000 ms |
| コード長 | 257 bytes |
| コンパイル時間 | 136 ms |
| コンパイル使用メモリ | 11,904 KB |
| 実行使用メモリ | 10,240 KB |
| 最終ジャッジ日時 | 2025-01-26 00:04:04 |
| 合計ジャッジ時間 | 13,259 ms |
|
ジャッジサーバーID (参考情報) |
judge13 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
n, m = map(int, input().split())
ans = 0
for i in range(n):
s, r = input().split()
r = int(r)
t = False
for j in range(4):
if r >= 1200 and s[j] == "x":
t = True
if r >= 1200 and t:
ans += 1
print(ans)