結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-12-05 19:08:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 749 ms / 1,000 ms
コード長 349 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 77,616 KB
最終ジャッジ日時 2024-09-15 20:55:04
合計ジャッジ時間 30,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 745 ms
76,928 KB
testcase_01 AC 746 ms
76,532 KB
testcase_02 AC 744 ms
76,816 KB
testcase_03 AC 745 ms
76,424 KB
testcase_04 AC 746 ms
76,816 KB
testcase_05 AC 746 ms
76,668 KB
testcase_06 AC 745 ms
76,488 KB
testcase_07 AC 746 ms
76,544 KB
testcase_08 AC 743 ms
76,732 KB
testcase_09 AC 746 ms
76,800 KB
testcase_10 AC 744 ms
76,764 KB
testcase_11 AC 745 ms
76,596 KB
testcase_12 AC 744 ms
76,784 KB
testcase_13 AC 749 ms
77,440 KB
testcase_14 AC 747 ms
77,440 KB
testcase_15 AC 746 ms
77,056 KB
testcase_16 AC 746 ms
77,084 KB
testcase_17 AC 748 ms
77,124 KB
testcase_18 AC 744 ms
77,100 KB
testcase_19 AC 749 ms
77,376 KB
testcase_20 AC 748 ms
77,288 KB
testcase_21 AC 746 ms
77,184 KB
testcase_22 AC 746 ms
77,568 KB
testcase_23 AC 748 ms
77,464 KB
testcase_24 AC 749 ms
77,440 KB
testcase_25 AC 747 ms
77,408 KB
testcase_26 AC 748 ms
77,440 KB
testcase_27 AC 749 ms
77,580 KB
testcase_28 AC 747 ms
77,440 KB
testcase_29 AC 747 ms
77,384 KB
testcase_30 AC 747 ms
77,288 KB
testcase_31 AC 747 ms
77,616 KB
testcase_32 AC 747 ms
77,440 KB
testcase_33 AC 748 ms
77,392 KB
testcase_34 AC 747 ms
77,568 KB
testcase_35 AC 746 ms
76,800 KB
testcase_36 AC 746 ms
76,736 KB
testcase_37 AC 743 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

input=sys.stdin.readline
S=input()[:-1]

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

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

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