結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー takeytakey
提出日時 2018-04-05 22:31:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-26 10:39:25
合計ジャッジ時間 2,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 107 ms
12,672 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 123 ms
12,640 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 74 ms
11,624 KB
testcase_15 AC 46 ms
11,264 KB
testcase_16 AC 87 ms
12,016 KB
testcase_17 AC 44 ms
11,136 KB
testcase_18 AC 86 ms
12,160 KB
testcase_19 AC 70 ms
11,776 KB
testcase_20 AC 107 ms
12,512 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 55 ms
11,392 KB
testcase_23 AC 101 ms
12,364 KB
testcase_24 AC 101 ms
12,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

if __name__ == "__main__":
    N = int(input())
    L = list(map(int, input().split()))
    ans = {}
    # 回答する
    ans[L[0]] = 1
    max_key = L[0]
    max_val = 1
    for i in range(1, len(L)):
        if L[i] in ans:
            ans[L[i]] += 1
            if ans[L[i]] > max_val:
                max_key = L[i]
                max_val = ans[L[i]]
        else:
            ans[L[i]] = 1
        if ans[L[i]] == max_val:
            if L[i] > max_key:
                max_key = L[i]
                max_val = ans[L[i]]
    print(max_key)
0