結果
問題 | No.2714 Amaou |
ユーザー |
|
提出日時 | 2024-04-05 21:25:48 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 179 bytes |
コンパイル時間 | 346 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 54,068 KB |
最終ジャッジ日時 | 2024-10-01 01:36:46 |
合計ジャッジ時間 | 2,213 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 26 |
ソースコード
S = tuple(sorted(["akai","marui","okii","umai"]))ans = 0n = int(input())for _ in range(n):L = tuple(sorted(input().split()))if L == S:ans += 1print(ans)