結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー hir355
提出日時 2021-01-22 21:44:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 1,000 ms
コード長 125 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,192 KB
最終ジャッジ日時 2024-12-27 23:19:13
合計ジャッジ時間 4,099 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
s = input()
for k, v in (Counter(s)).items():
    if v == 1:
        print(s.index(k) + 1, k)
0