結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 H20H20
提出日時 2021-01-22 21:28:09
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 135 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 87,112 KB
実行使用メモリ 101,780 KB
最終ジャッジ日時 2023-08-27 17:25:36
合計ジャッジ時間 6,954 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
71,616 KB
testcase_01 AC 96 ms
71,376 KB
testcase_02 AC 95 ms
71,540 KB
testcase_03 AC 98 ms
71,536 KB
testcase_04 AC 97 ms
71,536 KB
testcase_05 AC 95 ms
71,376 KB
testcase_06 AC 98 ms
71,676 KB
testcase_07 AC 99 ms
71,464 KB
testcase_08 AC 99 ms
71,628 KB
testcase_09 AC 94 ms
71,732 KB
testcase_10 AC 97 ms
71,600 KB
testcase_11 AC 97 ms
71,520 KB
testcase_12 AC 95 ms
71,672 KB
testcase_13 AC 146 ms
97,120 KB
testcase_14 AC 143 ms
95,228 KB
testcase_15 AC 105 ms
78,256 KB
testcase_16 AC 117 ms
80,260 KB
testcase_17 AC 155 ms
99,276 KB
testcase_18 AC 125 ms
81,472 KB
testcase_19 AC 156 ms
100,472 KB
testcase_20 AC 137 ms
91,120 KB
testcase_21 AC 123 ms
81,300 KB
testcase_22 AC 145 ms
96,632 KB
testcase_23 AC 157 ms
101,520 KB
testcase_24 AC 156 ms
101,264 KB
testcase_25 AC 152 ms
101,556 KB
testcase_26 AC 152 ms
101,440 KB
testcase_27 AC 149 ms
101,344 KB
testcase_28 AC 153 ms
101,780 KB
testcase_29 AC 153 ms
101,376 KB
testcase_30 AC 152 ms
101,332 KB
testcase_31 AC 155 ms
101,372 KB
testcase_32 AC 151 ms
101,316 KB
testcase_33 AC 160 ms
101,200 KB
testcase_34 AC 150 ms
101,508 KB
testcase_35 AC 95 ms
71,460 KB
testcase_36 AC 96 ms
71,728 KB
testcase_37 AC 95 ms
71,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
S = list(input())
SC = collections.Counter(S)
for k,v in SC.items():
    if v==1:
        print(str(S.index(k)+1),k)
0