結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-12 22:57:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 1,000 ms
コード長 199 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 76,340 KB
最終ジャッジ日時 2024-11-15 15:34:19
合計ジャッジ時間 4,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,540 KB
testcase_01 AC 38 ms
52,708 KB
testcase_02 AC 37 ms
52,956 KB
testcase_03 AC 37 ms
52,552 KB
testcase_04 AC 37 ms
52,872 KB
testcase_05 AC 38 ms
52,892 KB
testcase_06 AC 37 ms
52,068 KB
testcase_07 AC 41 ms
53,252 KB
testcase_08 AC 37 ms
53,728 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 38 ms
51,816 KB
testcase_11 AC 37 ms
52,804 KB
testcase_12 AC 36 ms
52,548 KB
testcase_13 AC 70 ms
76,072 KB
testcase_14 AC 69 ms
76,340 KB
testcase_15 AC 44 ms
64,056 KB
testcase_16 AC 58 ms
75,220 KB
testcase_17 AC 77 ms
75,676 KB
testcase_18 AC 61 ms
75,868 KB
testcase_19 AC 75 ms
76,044 KB
testcase_20 AC 62 ms
75,440 KB
testcase_21 AC 62 ms
75,228 KB
testcase_22 AC 70 ms
75,960 KB
testcase_23 AC 75 ms
76,124 KB
testcase_24 AC 75 ms
75,768 KB
testcase_25 AC 76 ms
76,088 KB
testcase_26 AC 75 ms
76,232 KB
testcase_27 AC 84 ms
75,956 KB
testcase_28 AC 73 ms
76,076 KB
testcase_29 AC 76 ms
75,832 KB
testcase_30 AC 76 ms
76,052 KB
testcase_31 AC 75 ms
75,756 KB
testcase_32 AC 78 ms
75,828 KB
testcase_33 AC 76 ms
75,700 KB
testcase_34 AC 78 ms
75,964 KB
testcase_35 AC 38 ms
52,012 KB
testcase_36 AC 38 ms
52,688 KB
testcase_37 AC 37 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
dic={}
for i in range(len(s)):
    if s[i] not in dic:
        dic[s[i]] = [1,i+1]
    else:
        dic[s[i]][0] += 1
        
for k,v in dic.items():
    if v[0]==1:
        print(v[1],k)
0