結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー ks2mks2m
提出日時 2021-01-22 22:06:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 375 ms / 1,000 ms
コード長 490 bytes
コンパイル時間 2,609 ms
コンパイル使用メモリ 77,996 KB
実行使用メモリ 49,620 KB
最終ジャッジ日時 2024-06-08 15:02:53
合計ジャッジ時間 12,817 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
42,256 KB
testcase_01 AC 136 ms
42,172 KB
testcase_02 AC 131 ms
41,816 KB
testcase_03 AC 143 ms
42,052 KB
testcase_04 AC 137 ms
42,332 KB
testcase_05 AC 143 ms
42,240 KB
testcase_06 AC 144 ms
41,872 KB
testcase_07 AC 142 ms
42,368 KB
testcase_08 AC 133 ms
42,136 KB
testcase_09 AC 124 ms
42,096 KB
testcase_10 AC 153 ms
42,172 KB
testcase_11 AC 157 ms
42,320 KB
testcase_12 AC 149 ms
42,092 KB
testcase_13 AC 339 ms
48,856 KB
testcase_14 AC 337 ms
48,808 KB
testcase_15 AC 215 ms
44,308 KB
testcase_16 AC 286 ms
47,132 KB
testcase_17 AC 339 ms
48,432 KB
testcase_18 AC 303 ms
47,692 KB
testcase_19 AC 347 ms
49,140 KB
testcase_20 AC 337 ms
48,188 KB
testcase_21 AC 312 ms
47,284 KB
testcase_22 AC 334 ms
48,852 KB
testcase_23 AC 345 ms
49,620 KB
testcase_24 AC 356 ms
49,268 KB
testcase_25 AC 344 ms
49,204 KB
testcase_26 AC 346 ms
49,448 KB
testcase_27 AC 300 ms
49,308 KB
testcase_28 AC 340 ms
49,408 KB
testcase_29 AC 329 ms
49,256 KB
testcase_30 AC 357 ms
49,004 KB
testcase_31 AC 370 ms
49,344 KB
testcase_32 AC 375 ms
49,096 KB
testcase_33 AC 353 ms
49,380 KB
testcase_34 AC 355 ms
49,400 KB
testcase_35 AC 138 ms
42,204 KB
testcase_36 AC 140 ms
41,744 KB
testcase_37 AC 127 ms
41,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		sc.close();

		Map<Character, Integer> map = new HashMap<>();
		for (char c : s) {
			map.put(c, map.getOrDefault(c, 0) + 1);
		}

		for (int i = 0; i < s.length; i++) {
			if (map.get(s[i]) == 1) {
				System.out.println(i + 1 + " " + s[i]);
			}
		}
	}
}
0