結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-12-14 03:49:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 1,000 ms
コード長 148 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-20 00:24:42
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,052 KB
testcase_01 AC 38 ms
53,420 KB
testcase_02 AC 38 ms
53,984 KB
testcase_03 AC 39 ms
54,240 KB
testcase_04 AC 40 ms
54,236 KB
testcase_05 AC 38 ms
54,268 KB
testcase_06 AC 38 ms
54,980 KB
testcase_07 AC 37 ms
53,944 KB
testcase_08 AC 37 ms
54,088 KB
testcase_09 AC 41 ms
54,488 KB
testcase_10 AC 38 ms
54,244 KB
testcase_11 AC 37 ms
53,836 KB
testcase_12 AC 38 ms
54,312 KB
testcase_13 AC 69 ms
76,556 KB
testcase_14 AC 68 ms
76,588 KB
testcase_15 AC 43 ms
61,060 KB
testcase_16 AC 56 ms
75,996 KB
testcase_17 AC 63 ms
76,152 KB
testcase_18 AC 55 ms
72,728 KB
testcase_19 AC 66 ms
76,432 KB
testcase_20 AC 55 ms
70,916 KB
testcase_21 AC 61 ms
76,172 KB
testcase_22 AC 68 ms
76,464 KB
testcase_23 AC 73 ms
76,152 KB
testcase_24 AC 61 ms
72,260 KB
testcase_25 AC 70 ms
76,512 KB
testcase_26 AC 71 ms
76,412 KB
testcase_27 AC 73 ms
76,800 KB
testcase_28 AC 72 ms
76,308 KB
testcase_29 AC 67 ms
76,436 KB
testcase_30 AC 68 ms
76,692 KB
testcase_31 AC 63 ms
74,216 KB
testcase_32 AC 68 ms
76,368 KB
testcase_33 AC 58 ms
70,676 KB
testcase_34 AC 72 ms
76,388 KB
testcase_35 AC 37 ms
53,812 KB
testcase_36 AC 38 ms
54,264 KB
testcase_37 AC 37 ms
54,548 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