結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ThetaTheta
提出日時 2022-10-28 13:55:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,252 KB
最終ジャッジ日時 2024-07-05 18:51:33
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,136 KB
testcase_01 AC 110 ms
22,132 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 110 ms
22,128 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 26 ms
10,496 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 74 ms
17,488 KB
testcase_15 AC 47 ms
13,568 KB
testcase_16 AC 90 ms
19,420 KB
testcase_17 AC 46 ms
13,312 KB
testcase_18 AC 84 ms
19,128 KB
testcase_19 AC 69 ms
16,776 KB
testcase_20 AC 110 ms
22,252 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 56 ms
14,484 KB
testcase_23 AC 103 ms
21,640 KB
testcase_24 AC 107 ms
21,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def main():
    N = int(input())
    L = list(map(int, input().split()))
    l_counter = Counter(L)

    sorted_list = sorted(
        range(1, N+1), key=lambda num: (l_counter[num], num), reverse=True)
    print(sorted_list[0])


if __name__ == "__main__":
    main()
0