結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー paruf4paruf4
提出日時 2021-01-22 21:59:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 76,468 KB
最終ジャッジ日時 2024-06-08 14:48:21
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,840 KB
testcase_01 AC 42 ms
54,596 KB
testcase_02 AC 45 ms
54,392 KB
testcase_03 AC 42 ms
54,284 KB
testcase_04 AC 43 ms
54,208 KB
testcase_05 AC 43 ms
54,728 KB
testcase_06 AC 43 ms
53,560 KB
testcase_07 AC 43 ms
54,940 KB
testcase_08 AC 42 ms
53,680 KB
testcase_09 AC 42 ms
54,316 KB
testcase_10 AC 44 ms
54,020 KB
testcase_11 AC 42 ms
53,984 KB
testcase_12 AC 44 ms
54,180 KB
testcase_13 AC 79 ms
76,428 KB
testcase_14 AC 79 ms
76,060 KB
testcase_15 AC 50 ms
64,348 KB
testcase_16 AC 66 ms
76,012 KB
testcase_17 AC 82 ms
75,732 KB
testcase_18 AC 70 ms
76,468 KB
testcase_19 AC 83 ms
76,180 KB
testcase_20 AC 73 ms
75,908 KB
testcase_21 AC 69 ms
75,912 KB
testcase_22 AC 78 ms
76,388 KB
testcase_23 AC 84 ms
76,404 KB
testcase_24 AC 84 ms
75,884 KB
testcase_25 AC 82 ms
76,376 KB
testcase_26 AC 84 ms
76,096 KB
testcase_27 AC 85 ms
75,884 KB
testcase_28 AC 84 ms
76,260 KB
testcase_29 AC 84 ms
75,964 KB
testcase_30 AC 83 ms
76,048 KB
testcase_31 AC 83 ms
76,280 KB
testcase_32 AC 85 ms
76,044 KB
testcase_33 AC 84 ms
76,008 KB
testcase_34 WA -
testcase_35 AC 42 ms
54,124 KB
testcase_36 AC 41 ms
54,576 KB
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
s = input()
c = Counter(s)
mn = 10**18
mnc = ''
for k, v in c.items():
    if v < mn:
        mnc = k
res = -1
for i in range(len(s)):
    if s[i] == mnc:
        res = i+1
print(res, mnc)
0