結果

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

ソースコード

diff #

from collections import*
s=input()
c=Counter(s)
t=sorted(c.items(),key=lambda x:x[1])[0][0]
print(s.index(t)+1,t)
0