結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー rlangevinrlangevin
提出日時 2024-12-20 08:53:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 99,660 KB
最終ジャッジ日時 2024-12-20 08:53:37
合計ジャッジ時間 5,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,428 KB
testcase_01 AC 43 ms
53,928 KB
testcase_02 AC 45 ms
53,864 KB
testcase_03 AC 44 ms
53,752 KB
testcase_04 AC 42 ms
53,436 KB
testcase_05 AC 44 ms
53,244 KB
testcase_06 AC 69 ms
53,468 KB
testcase_07 AC 43 ms
54,604 KB
testcase_08 AC 43 ms
55,088 KB
testcase_09 AC 43 ms
53,968 KB
testcase_10 AC 42 ms
54,116 KB
testcase_11 AC 43 ms
54,184 KB
testcase_12 AC 43 ms
55,008 KB
testcase_13 AC 100 ms
95,700 KB
testcase_14 AC 94 ms
93,888 KB
testcase_15 AC 49 ms
65,036 KB
testcase_16 AC 74 ms
84,164 KB
testcase_17 AC 103 ms
95,240 KB
testcase_18 AC 82 ms
87,344 KB
testcase_19 AC 104 ms
98,932 KB
testcase_20 AC 86 ms
90,044 KB
testcase_21 AC 87 ms
87,812 KB
testcase_22 AC 93 ms
94,992 KB
testcase_23 AC 106 ms
99,308 KB
testcase_24 AC 106 ms
99,220 KB
testcase_25 AC 107 ms
99,312 KB
testcase_26 AC 105 ms
99,224 KB
testcase_27 AC 105 ms
99,312 KB
testcase_28 AC 105 ms
99,428 KB
testcase_29 AC 106 ms
99,060 KB
testcase_30 AC 107 ms
99,660 KB
testcase_31 AC 111 ms
99,316 KB
testcase_32 AC 110 ms
99,168 KB
testcase_33 AC 109 ms
99,280 KB
testcase_34 AC 108 ms
99,064 KB
testcase_35 AC 46 ms
54,776 KB
testcase_36 AC 45 ms
54,488 KB
testcase_37 AC 46 ms
55,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
S = list(input())
C = Counter(S)
v = C.most_common()[1][0]
print(S.index(v) + 1, v)
0