結果

問題 No.693 square1001 and Permutation 2
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-18 18:14:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-05-02 19:25:03
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 WA -
testcase_03 AC 39 ms
53,632 KB
testcase_04 WA -
testcase_05 AC 39 ms
53,504 KB
testcase_06 AC 39 ms
53,888 KB
testcase_07 AC 40 ms
53,248 KB
testcase_08 WA -
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 42 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n=int(input())
a=list(map(int,input().split()))
d=defaultdict(int)
for i in a:
    d[i]+=1
cnt_in=0
cnt_out=0
for i in range(1,n+1):
    if d[i]>0:
        cnt_in+=i
    else:
        cnt_out+=i
g=sum(a)
ans=abs(g-(cnt_in+cnt_out))
print(ans)
0