結果
問題 | No.1362 [Zelkova 8th Tune] Black Sheep |
ユーザー | 👑 Kazun |
提出日時 | 2020-09-07 23:21:06 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 600 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 85,160 KB |
最終ジャッジ日時 | 2024-07-23 18:22:04 |
合計ジャッジ時間 | 3,671 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
64,004 KB |
testcase_01 | AC | 55 ms
64,744 KB |
testcase_02 | AC | 56 ms
63,424 KB |
testcase_03 | AC | 55 ms
64,060 KB |
testcase_04 | AC | 55 ms
63,760 KB |
testcase_05 | AC | 56 ms
64,736 KB |
testcase_06 | AC | 56 ms
63,640 KB |
testcase_07 | AC | 55 ms
65,220 KB |
testcase_08 | AC | 55 ms
64,504 KB |
testcase_09 | AC | 55 ms
63,940 KB |
testcase_10 | AC | 55 ms
64,616 KB |
testcase_11 | AC | 56 ms
63,796 KB |
testcase_12 | AC | 57 ms
64,296 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 62 ms
71,560 KB |
testcase_16 | AC | 90 ms
85,160 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 55 ms
64,056 KB |
testcase_36 | AC | 55 ms
64,828 KB |
testcase_37 | AC | 56 ms
64,108 KB |
ソースコード
from string import ascii_letters X=ascii_letters+"0123456789" S=input() #===制約チェック assert 3<=len(S)<=2*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)