結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー hir355hir355
提出日時 2021-01-22 21:44:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 125 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 86,452 KB
実行使用メモリ 78,064 KB
最終ジャッジ日時 2023-08-27 18:23:35
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
71,180 KB
testcase_01 AC 89 ms
71,400 KB
testcase_02 AC 89 ms
71,456 KB
testcase_03 AC 90 ms
71,492 KB
testcase_04 AC 88 ms
71,200 KB
testcase_05 AC 89 ms
71,484 KB
testcase_06 AC 90 ms
71,336 KB
testcase_07 AC 90 ms
71,196 KB
testcase_08 AC 89 ms
71,644 KB
testcase_09 AC 89 ms
71,396 KB
testcase_10 AC 89 ms
71,488 KB
testcase_11 AC 91 ms
71,644 KB
testcase_12 AC 92 ms
71,584 KB
testcase_13 AC 134 ms
77,424 KB
testcase_14 AC 117 ms
77,300 KB
testcase_15 AC 97 ms
76,660 KB
testcase_16 AC 106 ms
76,612 KB
testcase_17 AC 120 ms
77,504 KB
testcase_18 AC 109 ms
76,780 KB
testcase_19 AC 120 ms
77,544 KB
testcase_20 AC 110 ms
76,948 KB
testcase_21 AC 110 ms
76,652 KB
testcase_22 AC 115 ms
77,452 KB
testcase_23 AC 120 ms
78,064 KB
testcase_24 AC 119 ms
77,968 KB
testcase_25 AC 120 ms
77,644 KB
testcase_26 AC 120 ms
77,716 KB
testcase_27 AC 120 ms
77,920 KB
testcase_28 AC 121 ms
77,768 KB
testcase_29 AC 122 ms
77,824 KB
testcase_30 AC 120 ms
77,608 KB
testcase_31 AC 120 ms
77,752 KB
testcase_32 AC 121 ms
77,808 KB
testcase_33 AC 120 ms
77,812 KB
testcase_34 AC 120 ms
77,656 KB
testcase_35 AC 89 ms
71,448 KB
testcase_36 AC 89 ms
71,544 KB
testcase_37 AC 91 ms
71,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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