結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー hidehic0hidehic0
提出日時 2024-10-26 11:37:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,590 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-10-26 11:37:54
合計ジャッジ時間 5,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
62,616 KB
testcase_01 AC 43 ms
55,192 KB
testcase_02 AC 43 ms
54,860 KB
testcase_03 AC 57 ms
65,152 KB
testcase_04 AC 43 ms
55,136 KB
testcase_05 AC 42 ms
55,400 KB
testcase_06 AC 42 ms
54,984 KB
testcase_07 AC 46 ms
62,316 KB
testcase_08 AC 42 ms
54,584 KB
testcase_09 AC 42 ms
54,984 KB
testcase_10 AC 50 ms
61,588 KB
testcase_11 AC 44 ms
55,272 KB
testcase_12 AC 48 ms
62,860 KB
testcase_13 AC 55 ms
63,896 KB
testcase_14 AC 52 ms
62,936 KB
testcase_15 AC 53 ms
62,572 KB
testcase_16 AC 54 ms
64,096 KB
testcase_17 AC 49 ms
61,908 KB
testcase_18 AC 44 ms
55,904 KB
testcase_19 AC 51 ms
62,760 KB
testcase_20 AC 50 ms
61,520 KB
testcase_21 AC 53 ms
62,924 KB
04_evil.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# ライブラリと関数と便利変数
# ライブラリ
from collections import deque, defaultdict, Counter
from math import pi
from itertools import permutations
import bisect
import sys

# cortedcontainersは使うときだけ wandbox非対応なので
# from sortedcontainers import SortedDict, SortedSet, SortedList


# 関数
def pow(x: int, n: int, t: int = 1):
    # O(log N)
    if t == 1:
        ans = 1
        while n:
            if n % 2:
                ans = ans * x
            x = x * x
            n >>= 1
        return ans
    ans = 1
    while n:
        if n % 2:
            ans = (ans * x) % t
        x = (x * x) % t
        n >>= 1
    return ans


def is_prime(n: int) -> bool:
    # O(√N)
    if n == 1:
        return False

    i = 2
    s = n**0.5

    while i < s:
        if n % i == 0:
            return False

        i += 1

    return True


def gcd(a, b):
    while a > 0 and b > 0:
        if a > b:
            a = a % b
        else:
            b = b % a

    return max(a, b)


def lcm(a, b):
    return (a * b) // gcd(a, b)


# 標準入力系
def s():
    return sys.stdin.readline().rstrip()


def sl():
    return s().split()


def ii():
    return int(s())


def il(add_num: int = 0):
    return list(map(lambda i: int(i) + add_num, sl()))


# 便利変数
INF = 10**18
lowerlist = list("abcdefghijklmnopqrstuvwxyz")
upperlist = list("ABCDEFGHIJKLMNOPQRSTUVWXYZ")


# コード
N = ii()
A = il()
ans = 0
for i in range(N):
    for k in range(N):
        ti, tk = i + 1, k + 1
        ans += abs(ti - tk) * abs(A[i] - A[k])

print(ans)
0