結果
問題 |
No.1362 [Zelkova 8th Tune] Black Sheep
|
ユーザー |
👑 ![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 38 |
ソースコード
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)