結果

問題 No.1233 割り切れない気持ち
ユーザー 37zigen37zigen
提出日時 2020-09-21 06:05:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,007 ms / 3,153 ms
コード長 711 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 77,616 KB
実行使用メモリ 78,292 KB
最終ジャッジ日時 2024-06-24 11:23:20
合計ジャッジ時間 30,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
60,652 KB
testcase_01 AC 155 ms
60,776 KB
testcase_02 AC 166 ms
60,808 KB
testcase_03 AC 250 ms
61,396 KB
testcase_04 AC 233 ms
61,156 KB
testcase_05 AC 167 ms
60,764 KB
testcase_06 AC 166 ms
60,820 KB
testcase_07 AC 588 ms
68,312 KB
testcase_08 AC 698 ms
68,652 KB
testcase_09 AC 900 ms
78,272 KB
testcase_10 AC 937 ms
78,292 KB
testcase_11 AC 561 ms
68,520 KB
testcase_12 AC 988 ms
78,280 KB
testcase_13 AC 942 ms
78,224 KB
testcase_14 AC 1,007 ms
78,064 KB
testcase_15 AC 978 ms
78,144 KB
testcase_16 AC 988 ms
78,252 KB
testcase_17 AC 762 ms
73,608 KB
testcase_18 AC 895 ms
78,288 KB
testcase_19 AC 786 ms
78,160 KB
testcase_20 AC 763 ms
72,932 KB
testcase_21 AC 688 ms
73,440 KB
testcase_22 AC 687 ms
73,300 KB
testcase_23 AC 684 ms
73,348 KB
testcase_24 AC 684 ms
73,456 KB
testcase_25 AC 676 ms
73,312 KB
testcase_26 AC 783 ms
72,560 KB
testcase_27 AC 720 ms
73,628 KB
testcase_28 AC 697 ms
74,028 KB
testcase_29 AC 728 ms
74,120 KB
testcase_30 AC 704 ms
74,196 KB
testcase_31 AC 697 ms
74,716 KB
testcase_32 AC 717 ms
75,004 KB
testcase_33 AC 700 ms
74,756 KB
testcase_34 AC 701 ms
74,324 KB
testcase_35 AC 727 ms
73,708 KB
testcase_36 AC 692 ms
74,948 KB
testcase_37 AC 149 ms
60,800 KB
testcase_38 AC 721 ms
74,328 KB
testcase_39 AC 852 ms
74,916 KB
testcase_40 AC 844 ms
76,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;
import java.util.Stack;

class Main {
	public static void main(String[] $) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int[] A=new int[1<<20];
		int[] s=new int[1<<20];
		long ans=0;
		for (int i=0;i<N;++i) {
			int a=sc.nextInt();
			s[a]++;
			ans+=1L*a*N;
			A[a]++;
		}
		for (int i=s.length-2;i>=0;--i) {
			s[i]+=s[i+1];
		}
		for (int i=0;i<A.length;++i) {
			if (A[i]==0) continue;
			for (int a=i;a<s.length;a+=i) {
				ans-=1L*s[a]*i*A[i];
			}
		}
		System.out.println(ans);
		
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0