結果

問題 No.1233 割り切れない気持ち
ユーザー 37zigen37zigen
提出日時 2020-09-21 06:02:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 864 ms / 3,153 ms
コード長 722 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 77,980 KB
実行使用メモリ 69,472 KB
最終ジャッジ日時 2024-06-24 11:22:43
合計ジャッジ時間 27,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
55,900 KB
testcase_01 AC 145 ms
56,416 KB
testcase_02 AC 167 ms
56,344 KB
testcase_03 AC 219 ms
56,632 KB
testcase_04 AC 212 ms
56,720 KB
testcase_05 AC 155 ms
56,220 KB
testcase_06 AC 157 ms
56,180 KB
testcase_07 AC 488 ms
61,308 KB
testcase_08 AC 641 ms
61,424 KB
testcase_09 AC 745 ms
65,612 KB
testcase_10 AC 687 ms
65,672 KB
testcase_11 AC 498 ms
61,096 KB
testcase_12 AC 755 ms
69,472 KB
testcase_13 AC 834 ms
67,516 KB
testcase_14 AC 864 ms
67,508 KB
testcase_15 AC 862 ms
67,476 KB
testcase_16 AC 817 ms
68,372 KB
testcase_17 AC 683 ms
65,868 KB
testcase_18 AC 711 ms
67,668 KB
testcase_19 AC 704 ms
67,268 KB
testcase_20 AC 706 ms
65,936 KB
testcase_21 AC 638 ms
66,364 KB
testcase_22 AC 637 ms
65,548 KB
testcase_23 AC 645 ms
64,816 KB
testcase_24 AC 625 ms
65,420 KB
testcase_25 AC 627 ms
65,728 KB
testcase_26 AC 680 ms
65,640 KB
testcase_27 AC 663 ms
65,904 KB
testcase_28 AC 677 ms
65,640 KB
testcase_29 AC 667 ms
66,152 KB
testcase_30 AC 652 ms
65,292 KB
testcase_31 AC 649 ms
66,060 KB
testcase_32 AC 648 ms
65,412 KB
testcase_33 AC 651 ms
66,280 KB
testcase_34 AC 646 ms
65,684 KB
testcase_35 AC 661 ms
65,868 KB
testcase_36 AC 652 ms
65,688 KB
testcase_37 AC 141 ms
56,232 KB
testcase_38 AC 669 ms
65,740 KB
testcase_39 AC 732 ms
65,624 KB
testcase_40 AC 734 ms
65,428 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[(int)2e5+1];
		int[] s=new int[(int)2e5+1];
		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<=(int)2e5;++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