結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-12-05 19:03:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 956 ms / 1,000 ms
コード長 270 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-15 20:44:12
合計ジャッジ時間 39,450 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 950 ms
76,672 KB
testcase_01 AC 950 ms
76,672 KB
testcase_02 AC 951 ms
76,672 KB
testcase_03 AC 950 ms
76,672 KB
testcase_04 AC 950 ms
76,800 KB
testcase_05 AC 950 ms
76,544 KB
testcase_06 AC 951 ms
76,544 KB
testcase_07 AC 950 ms
76,672 KB
testcase_08 AC 949 ms
76,544 KB
testcase_09 AC 950 ms
76,672 KB
testcase_10 AC 950 ms
76,544 KB
testcase_11 AC 951 ms
76,800 KB
testcase_12 AC 951 ms
76,672 KB
testcase_13 AC 952 ms
77,312 KB
testcase_14 AC 952 ms
77,440 KB
testcase_15 AC 950 ms
76,800 KB
testcase_16 AC 952 ms
76,928 KB
testcase_17 AC 953 ms
77,200 KB
testcase_18 AC 953 ms
77,312 KB
testcase_19 AC 956 ms
77,440 KB
testcase_20 AC 954 ms
77,440 KB
testcase_21 AC 951 ms
77,184 KB
testcase_22 AC 952 ms
77,440 KB
testcase_23 AC 954 ms
77,440 KB
testcase_24 AC 955 ms
77,440 KB
testcase_25 AC 954 ms
77,440 KB
testcase_26 AC 955 ms
77,440 KB
testcase_27 AC 954 ms
77,440 KB
testcase_28 AC 954 ms
77,440 KB
testcase_29 AC 955 ms
77,568 KB
testcase_30 AC 955 ms
77,440 KB
testcase_31 AC 955 ms
77,440 KB
testcase_32 AC 956 ms
77,440 KB
testcase_33 AC 955 ms
77,440 KB
testcase_34 AC 955 ms
77,440 KB
testcase_35 AC 951 ms
76,672 KB
testcase_36 AC 951 ms
76,800 KB
testcase_37 AC 950 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#別解5
from random import randint
from collections import defaultdict
from time import time

S=input()

N=len(S)
D=defaultdict(int)
BEGIN=time()

while time()-BEGIN<0.90:
    i=randint(0,N-1)
    D[S[i]]+=1

alpha=min(D,key=lambda x:D[x])
print(S.index(alpha)+1,alpha)
0