結果

問題 No.2714 Amaou
ユーザー 7y9gv945
提出日時 2024-04-05 21:27:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 52,864 KB
最終ジャッジ日時 2024-10-01 01:38:41
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

good = sorted(["akai", "marui", "okii", "umai"])
cnt = 0
for i in range(n):
    arr = sorted(list(map(str, input().split())))

    if arr == good:
        cnt += 1

print(cnt)
0