結果
| 問題 | No.706 多眼生物の調査 |
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2024-07-18 08:59:25 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 272 ms |
| コンパイル使用メモリ | 85,088 KB |
| 実行使用メモリ | 140,168 KB |
| 最終ジャッジ日時 | 2026-04-02 00:39:47 |
| 合計ジャッジ時間 | 1,104 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 WA * 1 |
ソースコード
from collections import *
N = int(input())
C = Counter()
for i in range(N):
C[list(input()).count("^")] += 1
print(C.most_common()[0][0])
rlangevin