結果

問題 No.2714 Amaou
ユーザー ぶりんがー@みゅーじしゃんぶりんがー@みゅーじしゃん
提出日時 2024-07-09 16:28:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-07-09 16:28:59
合計ジャッジ時間 3,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,028 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 42 ms
54,304 KB
testcase_03 AC 44 ms
52,076 KB
testcase_04 AC 41 ms
53,476 KB
testcase_05 AC 39 ms
52,580 KB
testcase_06 AC 39 ms
52,952 KB
testcase_07 AC 40 ms
52,772 KB
testcase_08 AC 39 ms
52,752 KB
testcase_09 AC 40 ms
53,536 KB
testcase_10 AC 39 ms
53,160 KB
testcase_11 AC 40 ms
52,600 KB
testcase_12 AC 40 ms
54,232 KB
testcase_13 AC 39 ms
52,600 KB
testcase_14 AC 40 ms
52,256 KB
testcase_15 AC 39 ms
53,840 KB
testcase_16 AC 41 ms
52,628 KB
testcase_17 AC 39 ms
52,356 KB
testcase_18 AC 39 ms
52,600 KB
testcase_19 AC 40 ms
54,324 KB
testcase_20 AC 39 ms
52,656 KB
testcase_21 AC 38 ms
52,740 KB
testcase_22 AC 38 ms
52,868 KB
testcase_23 AC 38 ms
52,200 KB
testcase_24 AC 39 ms
53,692 KB
testcase_25 AC 43 ms
52,684 KB
testcase_26 AC 40 ms
53,260 KB
testcase_27 AC 40 ms
52,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
slist= [list(input().split()) for _ in range(n)]

ans=0
for i in range(n):
  if ("akai" in slist[i])and("marui" in slist[i])and("okii" in slist[i])and("umai" in slist[i]):
    ans +=1
print(ans)
0