結果

問題 No.1470 Mex Sum
ユーザー ripityripity
提出日時 2021-12-13 20:47:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 702 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 52,712 KB
最終ジャッジ日時 2024-07-22 20:01:57
合計ジャッジ時間 32,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,296 KB
testcase_01 AC 120 ms
41,348 KB
testcase_02 AC 292 ms
47,432 KB
testcase_03 AC 304 ms
47,656 KB
testcase_04 AC 294 ms
47,236 KB
testcase_05 AC 273 ms
46,520 KB
testcase_06 AC 266 ms
46,512 KB
testcase_07 AC 298 ms
47,484 KB
testcase_08 AC 284 ms
47,348 KB
testcase_09 AC 284 ms
47,276 KB
testcase_10 AC 297 ms
47,828 KB
testcase_11 AC 308 ms
47,628 KB
testcase_12 AC 584 ms
51,120 KB
testcase_13 AC 660 ms
50,356 KB
testcase_14 AC 642 ms
51,872 KB
testcase_15 AC 671 ms
51,884 KB
testcase_16 AC 661 ms
51,768 KB
testcase_17 AC 669 ms
51,276 KB
testcase_18 AC 673 ms
50,408 KB
testcase_19 AC 640 ms
51,992 KB
testcase_20 AC 659 ms
51,528 KB
testcase_21 AC 667 ms
51,908 KB
testcase_22 AC 678 ms
52,028 KB
testcase_23 AC 689 ms
51,512 KB
testcase_24 AC 634 ms
52,048 KB
testcase_25 AC 639 ms
52,036 KB
testcase_26 AC 679 ms
51,616 KB
testcase_27 AC 674 ms
52,052 KB
testcase_28 AC 659 ms
51,788 KB
testcase_29 AC 637 ms
51,796 KB
testcase_30 AC 682 ms
51,904 KB
testcase_31 AC 621 ms
51,528 KB
testcase_32 AC 675 ms
52,044 KB
testcase_33 AC 642 ms
52,108 KB
testcase_34 AC 683 ms
51,708 KB
testcase_35 AC 645 ms
52,016 KB
testcase_36 AC 679 ms
51,384 KB
testcase_37 AC 659 ms
52,444 KB
testcase_38 AC 691 ms
51,828 KB
testcase_39 AC 633 ms
52,312 KB
testcase_40 AC 697 ms
52,076 KB
testcase_41 AC 691 ms
52,228 KB
testcase_42 AC 702 ms
51,840 KB
testcase_43 AC 656 ms
52,488 KB
testcase_44 AC 654 ms
52,516 KB
testcase_45 AC 673 ms
50,632 KB
testcase_46 AC 626 ms
52,712 KB
testcase_47 AC 651 ms
51,996 KB
testcase_48 AC 601 ms
52,608 KB
testcase_49 AC 655 ms
52,340 KB
testcase_50 AC 653 ms
51,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        long ans = 0;
        long[] cnt = new long[3];
        for( int i = 0; i < N; i++ ) {
            int a = sc.nextInt()-1;
            cnt[Math.min(2,a)]++;
        }
        
        ans += cnt[0]*(cnt[0]-1)+cnt[0]*cnt[2]*2;
        ans += cnt[0]*cnt[1]*3;
        ans += (cnt[1]+cnt[2])*(cnt[1]+cnt[2]-1)/2;
        System.out.println(ans);
        
    }
    
}
0