結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー U SU S
提出日時 2021-01-22 21:37:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 1,000 ms
コード長 454 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 100,276 KB
最終ジャッジ日時 2024-06-08 13:42:37
合計ジャッジ時間 4,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,640 KB
testcase_01 AC 47 ms
60,696 KB
testcase_02 AC 49 ms
61,124 KB
testcase_03 AC 47 ms
60,504 KB
testcase_04 AC 47 ms
61,620 KB
testcase_05 AC 48 ms
61,008 KB
testcase_06 AC 49 ms
62,068 KB
testcase_07 AC 49 ms
61,280 KB
testcase_08 AC 48 ms
60,964 KB
testcase_09 AC 49 ms
60,056 KB
testcase_10 AC 49 ms
60,540 KB
testcase_11 AC 50 ms
61,880 KB
testcase_12 AC 48 ms
60,680 KB
testcase_13 AC 102 ms
94,824 KB
testcase_14 AC 95 ms
94,748 KB
testcase_15 AC 54 ms
66,816 KB
testcase_16 AC 78 ms
85,144 KB
testcase_17 AC 106 ms
98,032 KB
testcase_18 AC 85 ms
88,324 KB
testcase_19 AC 108 ms
99,248 KB
testcase_20 AC 91 ms
90,392 KB
testcase_21 AC 86 ms
88,508 KB
testcase_22 AC 101 ms
94,912 KB
testcase_23 AC 106 ms
99,916 KB
testcase_24 AC 109 ms
100,276 KB
testcase_25 AC 109 ms
100,048 KB
testcase_26 AC 111 ms
99,924 KB
testcase_27 AC 107 ms
100,180 KB
testcase_28 AC 108 ms
100,264 KB
testcase_29 AC 110 ms
100,064 KB
testcase_30 AC 109 ms
99,852 KB
testcase_31 AC 108 ms
100,208 KB
testcase_32 AC 109 ms
99,940 KB
testcase_33 AC 110 ms
100,244 KB
testcase_34 AC 107 ms
100,152 KB
testcase_35 AC 48 ms
60,868 KB
testcase_36 AC 48 ms
60,956 KB
testcase_37 AC 48 ms
60,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
import math
import bisect
from copy import deepcopy as dc
from itertools import accumulate
from collections import Counter, defaultdict, deque
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1

s = list(input())
c = list(Counter(s).items())
c.sort(key=lambda x:x[1])
print(s.index(c[0][0])+1, c[0][0])



0