結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー vwxyzvwxyz
提出日時 2021-07-29 23:34:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 818 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 104,928 KB
最終ジャッジ日時 2024-09-14 20:04:54
合計ジャッジ時間 5,148 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
90,112 KB
testcase_01 AC 164 ms
104,928 KB
testcase_02 AC 142 ms
89,892 KB
testcase_03 AC 142 ms
89,948 KB
testcase_04 AC 144 ms
89,600 KB
testcase_05 AC 162 ms
104,832 KB
testcase_06 AC 144 ms
89,824 KB
testcase_07 AC 143 ms
89,728 KB
testcase_08 AC 144 ms
89,648 KB
testcase_09 AC 145 ms
89,812 KB
testcase_10 AC 144 ms
89,728 KB
testcase_11 AC 145 ms
89,728 KB
testcase_12 AC 145 ms
89,728 KB
testcase_13 AC 145 ms
89,728 KB
testcase_14 AC 157 ms
97,664 KB
testcase_15 AC 148 ms
91,452 KB
testcase_16 AC 159 ms
100,980 KB
testcase_17 AC 150 ms
90,976 KB
testcase_18 AC 160 ms
101,112 KB
testcase_19 AC 158 ms
96,384 KB
testcase_20 AC 164 ms
104,832 KB
testcase_21 AC 146 ms
90,412 KB
testcase_22 AC 150 ms
93,056 KB
testcase_23 AC 162 ms
104,920 KB
testcase_24 AC 161 ms
104,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD, modf
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

N,*L=map(int,read().split())
cnt=[0]*7
for l in L:
    cnt[l]+=1
m=max(cnt)
for i in range(6,-1,-1):
    if cnt[i]==m:
        ans=i
        break
print(ans)
0