結果
問題 | No.1233 割り切れない気持ち |
ユーザー | 37zigen |
提出日時 | 2020-09-21 05:53:27 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 677 bytes |
コンパイル時間 | 2,542 ms |
コンパイル使用メモリ | 77,732 KB |
実行使用メモリ | 78,828 KB |
最終ジャッジ日時 | 2024-06-24 11:21:26 |
合計ジャッジ時間 | 15,990 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
61,060 KB |
testcase_01 | AC | 134 ms
54,124 KB |
testcase_02 | AC | 142 ms
54,224 KB |
testcase_03 | AC | 220 ms
56,928 KB |
testcase_04 | AC | 198 ms
56,824 KB |
testcase_05 | AC | 144 ms
53,928 KB |
testcase_06 | AC | 144 ms
54,096 KB |
testcase_07 | AC | 498 ms
59,384 KB |
testcase_08 | AC | 595 ms
59,488 KB |
testcase_09 | AC | 770 ms
65,372 KB |
testcase_10 | AC | 761 ms
65,912 KB |
testcase_11 | AC | 480 ms
59,240 KB |
testcase_12 | AC | 851 ms
67,348 KB |
testcase_13 | AC | 807 ms
68,284 KB |
testcase_14 | AC | 832 ms
67,460 KB |
testcase_15 | AC | 770 ms
67,524 KB |
testcase_16 | AC | 827 ms
67,492 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
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[N]; int[] s=new int[(int)2e5+1]; long ans=0; for (int i=0;i<N;++i) { A[i]=sc.nextInt(); s[A[i]]++; ans+=1L*A[i]*N; } for (int i=s.length-2;i>=0;--i) { s[i]+=s[i+1]; } for (int i=0;i<N;++i) { for (int a=A[i];a<s.length;a+=A[i]) { ans-=1L*s[a]*A[i]; } } System.out.println(ans); } void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));} }