結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-11-10 23:35:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 599 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,584 KB
実行使用メモリ 128,772 KB
最終ジャッジ日時 2024-07-23 18:22:30
合計ジャッジ時間 5,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
63,744 KB
testcase_01 AC 63 ms
63,744 KB
testcase_02 AC 63 ms
64,128 KB
testcase_03 AC 58 ms
63,744 KB
testcase_04 AC 58 ms
64,000 KB
testcase_05 AC 58 ms
63,360 KB
testcase_06 AC 59 ms
64,080 KB
testcase_07 AC 58 ms
63,872 KB
testcase_08 AC 59 ms
64,128 KB
testcase_09 AC 59 ms
63,712 KB
testcase_10 AC 58 ms
63,488 KB
testcase_11 AC 59 ms
63,744 KB
testcase_12 AC 58 ms
63,744 KB
testcase_13 AC 136 ms
105,728 KB
testcase_14 AC 135 ms
106,440 KB
testcase_15 AC 65 ms
70,400 KB
testcase_16 AC 94 ms
85,212 KB
testcase_17 AC 159 ms
128,720 KB
testcase_18 AC 100 ms
84,588 KB
testcase_19 AC 161 ms
128,772 KB
testcase_20 AC 115 ms
97,876 KB
testcase_21 AC 100 ms
84,232 KB
testcase_22 AC 136 ms
106,480 KB
testcase_23 AC 163 ms
127,996 KB
testcase_24 AC 163 ms
128,276 KB
testcase_25 AC 166 ms
128,276 KB
testcase_26 AC 165 ms
128,400 KB
testcase_27 AC 166 ms
128,276 KB
testcase_28 AC 163 ms
128,544 KB
testcase_29 AC 165 ms
128,336 KB
testcase_30 AC 164 ms
128,644 KB
testcase_31 AC 165 ms
128,528 KB
testcase_32 AC 164 ms
128,332 KB
testcase_33 AC 170 ms
128,344 KB
testcase_34 AC 165 ms
128,112 KB
testcase_35 AC 59 ms
63,744 KB
testcase_36 AC 57 ms
63,616 KB
testcase_37 AC 61 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from string import ascii_letters
X=ascii_letters+"0123456789"

S=input()

#===制約チェック
assert 3<=len(S)<=5*10**5,"文字数違反(長さ:{})".format(len(S))
assert set(S)<=set(X),"構成文字違反(構成文字:{})".format(set(S))
assert len(set(S))==2,"文字の種類数違反(構成文字:{},種類数:{})".format(set(S),len(set(S)))

M=float("inf")
for s in set(S):
    M=min(M,S.count(s))
assert M==1,"Black Sheepになっていない(出現回数が少ない文字の出現回数:{})".format(M)
#===
[a,b]=list(set(S))

if S.count(a)==1:
    x=a
else:
    x=b

print(S.index(x)+1,x)
0