結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー c-yanc-yan
提出日時 2021-01-22 21:24:34
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 49 ms / 1,000 ms
コード長 121 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 10,700 KB
実行使用メモリ 9,400 KB
最終ジャッジ日時 2023-08-27 17:10:45
合計ジャッジ時間 2,820 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,360 KB
testcase_01 AC 19 ms
8,316 KB
testcase_02 AC 17 ms
8,276 KB
testcase_03 AC 17 ms
8,256 KB
testcase_04 AC 17 ms
8,272 KB
testcase_05 AC 17 ms
8,316 KB
testcase_06 AC 16 ms
8,332 KB
testcase_07 AC 17 ms
8,372 KB
testcase_08 AC 16 ms
8,256 KB
testcase_09 AC 17 ms
8,348 KB
testcase_10 AC 19 ms
8,312 KB
testcase_11 AC 17 ms
8,332 KB
testcase_12 AC 17 ms
8,424 KB
testcase_13 AC 44 ms
9,068 KB
testcase_14 AC 42 ms
9,400 KB
testcase_15 AC 20 ms
8,388 KB
testcase_16 AC 28 ms
8,604 KB
testcase_17 AC 44 ms
9,184 KB
testcase_18 AC 33 ms
8,868 KB
testcase_19 AC 45 ms
9,180 KB
testcase_20 AC 34 ms
9,040 KB
testcase_21 AC 32 ms
8,788 KB
testcase_22 AC 40 ms
9,016 KB
testcase_23 AC 48 ms
9,308 KB
testcase_24 AC 46 ms
9,328 KB
testcase_25 AC 47 ms
9,204 KB
testcase_26 AC 48 ms
9,204 KB
testcase_27 AC 49 ms
9,176 KB
testcase_28 AC 49 ms
9,204 KB
testcase_29 AC 49 ms
9,264 KB
testcase_30 AC 49 ms
9,376 KB
testcase_31 AC 48 ms
9,188 KB
testcase_32 AC 49 ms
9,136 KB
testcase_33 AC 49 ms
9,332 KB
testcase_34 AC 47 ms
9,248 KB
testcase_35 AC 16 ms
8,276 KB
testcase_36 AC 16 ms
8,280 KB
testcase_37 AC 17 ms
8,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

S = input()

c = Counter(S)
a = [k for k in c if c[k] == 1][0]
print(S.index(a) + 1, a)
0