結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー KeroruKeroru
提出日時 2021-01-22 21:33:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 113 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 87,196 KB
実行使用メモリ 78,024 KB
最終ジャッジ日時 2023-08-27 17:43:21
合計ジャッジ時間 5,742 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
71,388 KB
testcase_01 AC 89 ms
71,456 KB
testcase_02 AC 90 ms
71,436 KB
testcase_03 AC 88 ms
71,224 KB
testcase_04 AC 89 ms
71,292 KB
testcase_05 AC 89 ms
71,412 KB
testcase_06 AC 90 ms
71,020 KB
testcase_07 AC 91 ms
71,012 KB
testcase_08 AC 89 ms
71,580 KB
testcase_09 AC 89 ms
71,380 KB
testcase_10 AC 90 ms
71,344 KB
testcase_11 AC 91 ms
71,224 KB
testcase_12 AC 88 ms
71,304 KB
testcase_13 AC 118 ms
77,532 KB
testcase_14 AC 114 ms
76,828 KB
testcase_15 AC 99 ms
76,524 KB
testcase_16 AC 107 ms
76,936 KB
testcase_17 AC 119 ms
77,556 KB
testcase_18 AC 107 ms
76,560 KB
testcase_19 AC 119 ms
77,632 KB
testcase_20 AC 111 ms
77,128 KB
testcase_21 AC 108 ms
76,576 KB
testcase_22 AC 115 ms
77,492 KB
testcase_23 AC 118 ms
77,856 KB
testcase_24 AC 120 ms
77,424 KB
testcase_25 AC 119 ms
77,816 KB
testcase_26 AC 120 ms
77,712 KB
testcase_27 AC 121 ms
77,484 KB
testcase_28 AC 121 ms
77,472 KB
testcase_29 AC 121 ms
77,368 KB
testcase_30 AC 122 ms
77,476 KB
testcase_31 AC 121 ms
77,360 KB
testcase_32 AC 121 ms
78,024 KB
testcase_33 AC 122 ms
77,476 KB
testcase_34 AC 120 ms
77,364 KB
testcase_35 AC 89 ms
71,492 KB
testcase_36 AC 87 ms
71,344 KB
testcase_37 AC 89 ms
71,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import*
s=input()
c=Counter(s)
t=sorted(c.items(),key=lambda x:x[1])[0][0]
print(s.index(t)+1,t)
0