結果

問題 No.2419 MMA文字列2
ユーザー tentententen
提出日時 2024-05-02 15:42:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 1,513 bytes
コンパイル時間 5,043 ms
コンパイル使用メモリ 78,244 KB
実行使用メモリ 41,156 KB
最終ジャッジ日時 2024-11-23 06:41:43
合計ジャッジ時間 7,100 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,176 KB
testcase_01 AC 53 ms
37,136 KB
testcase_02 AC 54 ms
36,880 KB
testcase_03 AC 53 ms
36,780 KB
testcase_04 AC 53 ms
37,024 KB
testcase_05 AC 53 ms
37,016 KB
testcase_06 AC 52 ms
37,144 KB
testcase_07 AC 51 ms
37,156 KB
testcase_08 AC 53 ms
37,128 KB
testcase_09 AC 51 ms
36,800 KB
testcase_10 AC 52 ms
37,144 KB
testcase_11 AC 52 ms
36,680 KB
testcase_12 AC 75 ms
38,056 KB
testcase_13 AC 58 ms
37,188 KB
testcase_14 AC 94 ms
38,960 KB
testcase_15 AC 79 ms
38,144 KB
testcase_16 AC 95 ms
39,012 KB
testcase_17 AC 72 ms
37,816 KB
testcase_18 AC 99 ms
38,872 KB
testcase_19 AC 97 ms
39,020 KB
testcase_20 AC 74 ms
38,200 KB
testcase_21 AC 70 ms
38,096 KB
testcase_22 AC 144 ms
40,092 KB
testcase_23 AC 118 ms
40,244 KB
testcase_24 AC 130 ms
39,828 KB
testcase_25 AC 144 ms
39,920 KB
testcase_26 AC 81 ms
38,088 KB
testcase_27 AC 144 ms
40,808 KB
testcase_28 AC 140 ms
41,156 KB
testcase_29 AC 131 ms
40,988 KB
testcase_30 AC 131 ms
40,080 KB
testcase_31 AC 145 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long[] singles = new long[26];
        long[] doubles = new long[26];
        long ans = 0;
        for (char c : sc.next().toCharArray()) {
            int idx = c - 'A';
            for (int i = 0; i < 26; i++) {
                if (i != idx) {
                    ans += doubles[i];
                }
            }
            doubles[idx] += singles[idx];
            singles[idx]++;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0