結果

問題 No.2714 Amaou
ユーザー 寝癖寝癖
提出日時 2024-04-05 21:22:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-10-01 01:32:00
合計ジャッジ時間 2,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,576 KB
testcase_01 AC 38 ms
52,468 KB
testcase_02 AC 37 ms
52,400 KB
testcase_03 AC 36 ms
52,736 KB
testcase_04 AC 36 ms
52,924 KB
testcase_05 AC 35 ms
53,124 KB
testcase_06 AC 36 ms
53,868 KB
testcase_07 AC 36 ms
53,340 KB
testcase_08 AC 36 ms
53,000 KB
testcase_09 AC 36 ms
52,832 KB
testcase_10 AC 41 ms
52,588 KB
testcase_11 AC 37 ms
53,924 KB
testcase_12 AC 36 ms
53,432 KB
testcase_13 AC 37 ms
53,952 KB
testcase_14 AC 37 ms
53,744 KB
testcase_15 AC 36 ms
52,872 KB
testcase_16 AC 36 ms
52,772 KB
testcase_17 AC 36 ms
52,816 KB
testcase_18 AC 40 ms
52,872 KB
testcase_19 AC 38 ms
52,888 KB
testcase_20 AC 39 ms
54,276 KB
testcase_21 AC 37 ms
53,812 KB
testcase_22 AC 36 ms
53,020 KB
testcase_23 AC 35 ms
52,772 KB
testcase_24 AC 37 ms
53,024 KB
testcase_25 AC 38 ms
53,156 KB
testcase_26 AC 37 ms
53,104 KB
testcase_27 AC 37 ms
52,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [set(input().split()) for _ in range(N)]
ans = 0
amaou = set(["akai", "marui", "okii", "umai"])
for i in range(N):
    if amaou == S[i]:
        ans += 1
print(ans)
0