結果

問題 No.1470 Mex Sum
ユーザー ygd.ygd.
提出日時 2021-04-09 21:47:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-06-25 04:55:56
合計ジャッジ時間 7,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 58 ms
65,536 KB
testcase_03 AC 58 ms
65,920 KB
testcase_04 AC 58 ms
66,176 KB
testcase_05 AC 58 ms
65,408 KB
testcase_06 AC 59 ms
65,664 KB
testcase_07 AC 58 ms
65,536 KB
testcase_08 AC 57 ms
65,920 KB
testcase_09 AC 58 ms
65,920 KB
testcase_10 AC 58 ms
65,920 KB
testcase_11 AC 58 ms
66,176 KB
testcase_12 AC 111 ms
106,368 KB
testcase_13 AC 109 ms
106,624 KB
testcase_14 AC 112 ms
105,472 KB
testcase_15 AC 109 ms
106,112 KB
testcase_16 AC 110 ms
106,496 KB
testcase_17 AC 112 ms
106,240 KB
testcase_18 AC 110 ms
106,880 KB
testcase_19 AC 113 ms
105,984 KB
testcase_20 AC 110 ms
106,496 KB
testcase_21 AC 110 ms
106,368 KB
testcase_22 AC 113 ms
105,984 KB
testcase_23 AC 113 ms
105,600 KB
testcase_24 AC 112 ms
105,984 KB
testcase_25 AC 112 ms
105,856 KB
testcase_26 AC 115 ms
105,600 KB
testcase_27 AC 110 ms
105,984 KB
testcase_28 AC 111 ms
105,984 KB
testcase_29 AC 112 ms
105,600 KB
testcase_30 AC 110 ms
106,112 KB
testcase_31 AC 111 ms
106,112 KB
testcase_32 AC 111 ms
106,112 KB
testcase_33 AC 112 ms
105,856 KB
testcase_34 AC 112 ms
106,112 KB
testcase_35 AC 113 ms
106,112 KB
testcase_36 AC 111 ms
105,984 KB
testcase_37 AC 93 ms
101,248 KB
testcase_38 AC 92 ms
100,992 KB
testcase_39 AC 92 ms
101,504 KB
testcase_40 AC 94 ms
101,120 KB
testcase_41 AC 94 ms
101,376 KB
testcase_42 AC 94 ms
100,992 KB
testcase_43 AC 94 ms
101,248 KB
testcase_44 AC 93 ms
101,120 KB
testcase_45 AC 93 ms
101,504 KB
testcase_46 AC 93 ms
101,248 KB
testcase_47 AC 94 ms
101,120 KB
testcase_48 AC 93 ms
101,248 KB
testcase_49 AC 95 ms
101,376 KB
testcase_50 AC 94 ms
101,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
A = list(map(int,input().split()))
dic = defaultdict(int)
for x in A:
    dic[x] += 1

ans = N*(N-1)//2 #すべて1

ones = dic[1]*(dic[1]-1)//2
ans += ones

onetwo = dic[1]*dic[2]
ans += onetwo * 2

oneelse = dic[1]*(N - dic[1] - dic[2])
ans += oneelse

print(ans)
0