結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー tentententen
提出日時 2021-01-25 09:38:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 365 ms / 1,000 ms
コード長 660 bytes
コンパイル時間 2,613 ms
コンパイル使用メモリ 77,012 KB
実行使用メモリ 50,144 KB
最終ジャッジ日時 2024-06-13 00:56:41
合計ジャッジ時間 15,883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
42,468 KB
testcase_01 AC 139 ms
42,356 KB
testcase_02 AC 147 ms
42,200 KB
testcase_03 AC 151 ms
42,504 KB
testcase_04 AC 129 ms
42,500 KB
testcase_05 AC 144 ms
42,360 KB
testcase_06 AC 153 ms
42,648 KB
testcase_07 AC 139 ms
42,360 KB
testcase_08 AC 143 ms
42,228 KB
testcase_09 AC 138 ms
42,124 KB
testcase_10 AC 143 ms
42,548 KB
testcase_11 AC 139 ms
42,460 KB
testcase_12 AC 128 ms
42,324 KB
testcase_13 AC 334 ms
49,088 KB
testcase_14 AC 303 ms
48,612 KB
testcase_15 AC 213 ms
44,288 KB
testcase_16 AC 290 ms
49,528 KB
testcase_17 AC 344 ms
50,144 KB
testcase_18 AC 305 ms
48,828 KB
testcase_19 AC 365 ms
49,652 KB
testcase_20 AC 332 ms
48,580 KB
testcase_21 AC 288 ms
48,472 KB
testcase_22 AC 337 ms
48,872 KB
testcase_23 AC 308 ms
49,496 KB
testcase_24 AC 340 ms
49,256 KB
testcase_25 AC 332 ms
49,292 KB
testcase_26 AC 339 ms
49,600 KB
testcase_27 AC 352 ms
49,408 KB
testcase_28 AC 298 ms
49,472 KB
testcase_29 AC 363 ms
49,504 KB
testcase_30 AC 354 ms
49,712 KB
testcase_31 AC 359 ms
49,804 KB
testcase_32 AC 350 ms
49,616 KB
testcase_33 AC 338 ms
49,396 KB
testcase_34 AC 341 ms
49,048 KB
testcase_35 AC 149 ms
42,552 KB
testcase_36 AC 144 ms
42,360 KB
testcase_37 AC 142 ms
42,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        HashMap<Character, Integer> counts = new HashMap<>();
        HashMap<Character, Integer> idx = new HashMap<>();
        for (int i = 1; i <= arr.length; i++) {
            counts.put(arr[i - 1], counts.getOrDefault(arr[i - 1], 0) + 1);
            idx.put(arr[i - 1], i);
        }
        for (char c : counts.keySet()) {
            if (counts.get(c) == 1) {
                System.out.println(idx.get(c) + " " + c);
                return;
            }
        }
    }
}
0