結果
| 問題 |
No.3010 水色コーダーさん
|
| コンテスト | |
| ユーザー |
Kaira
|
| 提出日時 | 2025-01-25 12:44:17 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 206 ms / 2,000 ms |
| コード長 | 283 bytes |
| コンパイル時間 | 613 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 76,544 KB |
| 最終ジャッジ日時 | 2025-01-25 22:19:22 |
| 合計ジャッジ時間 | 5,202 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
N, M = map(int, input().split())
count = 0
for i in range(N):
RS = input().split()
R = int(RS[-1])
S = RS[0]
rate = (R >= 1200)
WA = False
for i in range(4):
#print(S[i])
if S[i] == 'x':
WA = True
#print(WA)
if rate and WA:
count += 1
print(count)
Kaira