結果
| 問題 |
No.2714 Amaou
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-06-10 18:50:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 2,000 ms |
| コード長 | 162 bytes |
| コンパイル時間 | 2,980 ms |
| コンパイル使用メモリ | 81,828 KB |
| 実行使用メモリ | 52,608 KB |
| 最終ジャッジ日時 | 2025-01-02 14:31:20 |
| 合計ジャッジ時間 | 2,631 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 26 |
ソースコード
N = int(input())
S = [list(input().split()) for i in range(N)]
a = set(['akai', 'marui', 'umai', 'okii'])
cnt = sum(
1 for s in S if set(s) == a
)
print(cnt)