結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー paruf4paruf4
提出日時 2021-01-22 21:57:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 1,693 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 76,540 KB
最終ジャッジ日時 2024-06-08 14:38:03
合計ジャッジ時間 4,637 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,620 KB
testcase_01 AC 41 ms
53,472 KB
testcase_02 AC 41 ms
54,020 KB
testcase_03 AC 41 ms
53,932 KB
testcase_04 AC 41 ms
53,908 KB
testcase_05 AC 40 ms
54,372 KB
testcase_06 AC 39 ms
53,244 KB
testcase_07 AC 41 ms
55,000 KB
testcase_08 AC 41 ms
54,048 KB
testcase_09 AC 42 ms
54,388 KB
testcase_10 AC 41 ms
54,664 KB
testcase_11 AC 41 ms
53,492 KB
testcase_12 AC 42 ms
55,152 KB
testcase_13 AC 79 ms
75,936 KB
testcase_14 AC 77 ms
76,196 KB
testcase_15 AC 51 ms
64,120 KB
testcase_16 AC 66 ms
75,600 KB
testcase_17 AC 81 ms
76,108 KB
testcase_18 AC 70 ms
76,100 KB
testcase_19 AC 84 ms
76,084 KB
testcase_20 AC 71 ms
76,352 KB
testcase_21 AC 70 ms
76,172 KB
testcase_22 AC 79 ms
76,540 KB
testcase_23 AC 84 ms
76,052 KB
testcase_24 AC 84 ms
76,276 KB
testcase_25 AC 85 ms
76,188 KB
testcase_26 AC 84 ms
76,348 KB
testcase_27 AC 84 ms
75,964 KB
testcase_28 AC 83 ms
75,872 KB
testcase_29 AC 84 ms
75,984 KB
testcase_30 AC 82 ms
76,044 KB
testcase_31 AC 81 ms
76,020 KB
testcase_32 AC 82 ms
76,144 KB
testcase_33 AC 82 ms
75,764 KB
testcase_34 WA -
testcase_35 AC 42 ms
54,180 KB
testcase_36 AC 40 ms
53,532 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] == k:
        res = i+1
print(res, mnc)
0