結果
| 問題 |
No.2714 Amaou
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-07-13 20:50:31 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 57 ms / 2,000 ms |
| コード長 | 276 bytes |
| コンパイル時間 | 297 ms |
| コンパイル使用メモリ | 82,216 KB |
| 実行使用メモリ | 57,712 KB |
| 最終ジャッジ日時 | 2024-07-13 20:50:35 |
| 合計ジャッジ時間 | 3,341 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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))