結果
| 問題 | No.706 多眼生物の調査 |
| コンテスト | |
| ユーザー |
crize
|
| 提出日時 | 2018-07-10 14:02:45 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 161 bytes |
| 記録 | |
| コンパイル時間 | 454 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-04-03 03:53:30 |
| 合計ジャッジ時間 | 3,443 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 5 |
ソースコード
import collections
a=int(input())
b=[]
for i in range(a):
c=input()
b.append(c.count('^'))
print(b)
d=collections.Counter(b)
print(d.most_common()[0][0])
crize