結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-12-14 03:49:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 1,000 ms
コード長 148 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 76,200 KB
最終ジャッジ日時 2023-10-20 04:40:23
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,480 KB
testcase_01 AC 42 ms
53,480 KB
testcase_02 AC 42 ms
53,480 KB
testcase_03 AC 42 ms
53,480 KB
testcase_04 AC 43 ms
53,480 KB
testcase_05 AC 42 ms
53,480 KB
testcase_06 AC 47 ms
53,480 KB
testcase_07 AC 43 ms
53,480 KB
testcase_08 AC 44 ms
53,480 KB
testcase_09 AC 42 ms
53,480 KB
testcase_10 AC 43 ms
53,480 KB
testcase_11 AC 42 ms
53,480 KB
testcase_12 AC 43 ms
53,480 KB
testcase_13 AC 77 ms
75,892 KB
testcase_14 AC 78 ms
76,104 KB
testcase_15 AC 49 ms
61,728 KB
testcase_16 AC 66 ms
75,724 KB
testcase_17 AC 76 ms
76,024 KB
testcase_18 AC 61 ms
72,540 KB
testcase_19 AC 75 ms
76,072 KB
testcase_20 AC 63 ms
70,588 KB
testcase_21 AC 70 ms
75,860 KB
testcase_22 AC 77 ms
76,156 KB
testcase_23 AC 82 ms
76,196 KB
testcase_24 AC 70 ms
73,036 KB
testcase_25 AC 78 ms
76,200 KB
testcase_26 AC 78 ms
76,196 KB
testcase_27 AC 83 ms
76,196 KB
testcase_28 AC 82 ms
76,196 KB
testcase_29 AC 77 ms
76,192 KB
testcase_30 AC 76 ms
76,200 KB
testcase_31 AC 71 ms
73,856 KB
testcase_32 AC 77 ms
76,196 KB
testcase_33 AC 65 ms
70,908 KB
testcase_34 AC 80 ms
76,156 KB
testcase_35 AC 42 ms
53,504 KB
testcase_36 AC 42 ms
53,504 KB
testcase_37 AC 42 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
S=input()
D=defaultdict(int)

for s in S:
    D[s]+=1

for s in D:
    if D[s]==1:
        print(S.index(s)+1,s)
0