結果
| 問題 | No.3197 Frequency Counter |
| コンテスト | |
| ユーザー |
miztom
|
| 提出日時 | 2025-07-11 21:31:59 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 479 ms / 2,000 ms |
| + 488µs | |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 232 ms |
| コンパイル使用メモリ | 96,108 KB |
| 実行使用メモリ | 162,092 KB |
| 最終ジャッジ日時 | 2026-07-13 03:12:14 |
| 合計ジャッジ時間 | 7,540 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
from collections import*
n=int(input())
a=Counter(input().split())
for i in range(int(input())):
n,k=input().split()
print("YNeos"[a[n]<int(k)::2])
miztom