結果
問題 | No.2419 MMA文字列2 |
ユーザー | tenten |
提出日時 | 2023-08-17 10:06:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 1,770 bytes |
コンパイル時間 | 2,660 ms |
コンパイル使用メモリ | 87,848 KB |
実行使用メモリ | 40,416 KB |
最終ジャッジ日時 | 2024-05-04 16:55:46 |
合計ジャッジ時間 | 5,960 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,952 KB |
testcase_01 | AC | 48 ms
37,088 KB |
testcase_02 | AC | 47 ms
37,088 KB |
testcase_03 | AC | 48 ms
37,204 KB |
testcase_04 | AC | 48 ms
37,068 KB |
testcase_05 | AC | 48 ms
37,172 KB |
testcase_06 | AC | 46 ms
37,180 KB |
testcase_07 | AC | 46 ms
37,076 KB |
testcase_08 | AC | 46 ms
36,684 KB |
testcase_09 | AC | 46 ms
37,276 KB |
testcase_10 | AC | 46 ms
36,788 KB |
testcase_11 | AC | 46 ms
37,208 KB |
testcase_12 | AC | 62 ms
37,972 KB |
testcase_13 | AC | 49 ms
37,084 KB |
testcase_14 | AC | 78 ms
38,628 KB |
testcase_15 | AC | 65 ms
37,592 KB |
testcase_16 | AC | 78 ms
39,140 KB |
testcase_17 | AC | 57 ms
37,740 KB |
testcase_18 | AC | 76 ms
39,144 KB |
testcase_19 | AC | 79 ms
39,060 KB |
testcase_20 | AC | 58 ms
37,024 KB |
testcase_21 | AC | 53 ms
37,272 KB |
testcase_22 | AC | 97 ms
40,256 KB |
testcase_23 | AC | 101 ms
40,416 KB |
testcase_24 | AC | 102 ms
39,788 KB |
testcase_25 | AC | 93 ms
39,544 KB |
testcase_26 | AC | 56 ms
37,396 KB |
testcase_27 | AC | 99 ms
39,520 KB |
testcase_28 | AC | 100 ms
40,036 KB |
testcase_29 | AC | 105 ms
39,724 KB |
testcase_30 | AC | 101 ms
39,916 KB |
testcase_31 | AC | 94 ms
39,860 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int[] one = new int[26]; long[] two = new long[26]; long total = 0; long ans = 0; for (char c : sc.next().toCharArray()) { int x = c - 'A'; ans += total - two[x]; two[x] += one[x]; total += one[x]; one[x]++; } System.out.println(ans); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }