結果
| 問題 |
No.2714 Amaou
|
| コンテスト | |
| ユーザー |
n_na
|
| 提出日時 | 2024-04-06 00:26:05 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 2,000 ms |
| コード長 | 186 bytes |
| コンパイル時間 | 959 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 52,864 KB |
| 最終ジャッジ日時 | 2024-10-01 03:14:43 |
| 合計ジャッジ時間 | 2,135 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 26 |
ソースコード
N = int(input())
c = 0
s = set(["akai", "marui", "okii", "umai"])
for _ in range(N):
t = set(map(str,input().split()))
if len(s&t) == 4 and len(t) == 4:
c += 1
print(c)
n_na