結果
問題 | No.706 多眼生物の調査 |
ユーザー | gma712 |
提出日時 | 2018-10-04 09:27:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 514 ms / 2,000 ms |
コード長 | 318 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 44,444 KB |
最終ジャッジ日時 | 2024-10-12 11:09:39 |
合計ジャッジ時間 | 5,953 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 508 ms
44,056 KB |
testcase_01 | AC | 510 ms
44,068 KB |
testcase_02 | AC | 500 ms
44,192 KB |
testcase_03 | AC | 505 ms
44,312 KB |
testcase_04 | AC | 501 ms
44,052 KB |
testcase_05 | AC | 508 ms
44,052 KB |
testcase_06 | AC | 514 ms
44,308 KB |
testcase_07 | AC | 507 ms
44,444 KB |
ソースコード
#coding:utf-8 import numpy def count_eyes(e): return e.count('^') def main(): N = int(input().strip()) l = [] for _ in range(N): l.append(count_eyes(input())) num_l = numpy.bincount(l) max_indexes = numpy.where(num_l == num_l.max()) print(max_indexes[0][-1]) if __name__ == '__main__': main()