結果
| 問題 |
No.2714 Amaou
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-05-23 20:16:48 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 194 bytes |
| コンパイル時間 | 207 ms |
| コンパイル使用メモリ | 82,076 KB |
| 実行使用メモリ | 65,400 KB |
| 最終ジャッジ日時 | 2024-12-20 19:03:48 |
| 合計ジャッジ時間 | 2,986 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 26 |
ソースコード
S = ["akai","marui","okii","umai"] S.sort() N = int(input()) ans = 0 for _ in range(N): T = input.split() T.sort() for i in range(4): if T[i] != S[i]: break else: ans += 1 print(ans)