結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー miya145592miya145592
提出日時 2023-05-10 03:39:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 1,000 ms
コード長 210 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,084 KB
最終ジャッジ日時 2024-05-04 20:28:43
合計ジャッジ時間 4,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 38 ms
51,584 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 74 ms
75,648 KB
testcase_14 AC 75 ms
76,084 KB
testcase_15 AC 45 ms
59,136 KB
testcase_16 AC 59 ms
73,856 KB
testcase_17 AC 73 ms
76,032 KB
testcase_18 AC 59 ms
70,272 KB
testcase_19 AC 72 ms
76,032 KB
testcase_20 AC 61 ms
68,608 KB
testcase_21 AC 66 ms
75,756 KB
testcase_22 AC 75 ms
75,904 KB
testcase_23 AC 81 ms
75,904 KB
testcase_24 AC 71 ms
70,016 KB
testcase_25 AC 77 ms
75,776 KB
testcase_26 AC 79 ms
75,904 KB
testcase_27 AC 83 ms
75,776 KB
testcase_28 AC 80 ms
76,032 KB
testcase_29 AC 76 ms
76,032 KB
testcase_30 AC 77 ms
75,776 KB
testcase_31 AC 70 ms
72,704 KB
testcase_32 AC 74 ms
75,776 KB
testcase_33 AC 67 ms
68,096 KB
testcase_34 AC 82 ms
76,032 KB
testcase_35 AC 38 ms
51,840 KB
testcase_36 AC 43 ms
51,840 KB
testcase_37 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
d = dict()
c = dict()
for i, s in enumerate(S):
    if s not in d:
        d[s] = i
        c[s] = 0
    c[s] += 1
for cc, dd in zip(c, d):
    if c[cc]==1:
        print(d[dd]+1, dd)
        exit()
0