結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー lotokalotoka
提出日時 2024-12-24 11:41:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-12-24 11:41:22
合計ジャッジ時間 9,391 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,076 KB
testcase_01 AC 119 ms
40,804 KB
testcase_02 AC 128 ms
40,636 KB
testcase_03 AC 149 ms
41,196 KB
testcase_04 AC 131 ms
41,120 KB
testcase_05 AC 128 ms
41,072 KB
testcase_06 AC 119 ms
41,272 KB
testcase_07 AC 109 ms
39,928 KB
testcase_08 AC 121 ms
41,268 KB
testcase_09 AC 133 ms
40,000 KB
testcase_10 AC 124 ms
40,936 KB
testcase_11 AC 126 ms
41,604 KB
testcase_12 AC 117 ms
40,476 KB
testcase_13 AC 129 ms
41,164 KB
testcase_14 AC 124 ms
41,124 KB
testcase_15 AC 129 ms
40,092 KB
testcase_16 AC 130 ms
41,372 KB
testcase_17 AC 125 ms
40,212 KB
testcase_18 AC 135 ms
40,164 KB
testcase_19 AC 133 ms
41,396 KB
testcase_20 AC 129 ms
41,216 KB
testcase_21 AC 130 ms
41,112 KB
04_evil.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner scn = new Scanner(System.in);
		int N = scn.nextInt();
		int A[] = new int[N];
		int sum = 0;
		
		for(int i = 0; i < N; i++){
			A[i] = scn.nextInt();
		}
		
		for(int i = 0; i < N; i++){
			for(int j = 0; j < N; j++){
				sum += Math.abs(i - j) * Math.abs(A[i] - A[j]);
			}
		}
		
		System.out.println(sum);
	}
}
0