結果
| 問題 | No.2714 Amaou |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-07-13 20:50:31 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 48 ms / 2,000 ms |
| コード長 | 276 bytes |
| 記録 | |
| コンパイル時間 | 198 ms |
| コンパイル使用メモリ | 85,632 KB |
| 実行使用メモリ | 55,936 KB |
| 最終ジャッジ日時 | 2026-03-30 15:37:57 |
| 合計ジャッジ時間 | 7,827 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 26 |
ソースコード
from collections import * from itertools import * from functools import * from heapq import * import sys,math # input = sys.stdin.readline N = int(input()) S = [set(list(input().split())) for _ in range(N)] X = set(['akai','marui','okii','umai']) print(sum(s==X for s in S))