結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー lloyzlloyz
提出日時 2022-09-03 00:02:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 236 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,064 KB
最終ジャッジ日時 2024-11-16 06:52:49
合計ジャッジ時間 5,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 31 ms
10,368 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 31 ms
10,368 KB
testcase_05 AC 35 ms
10,368 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 31 ms
10,368 KB
testcase_11 AC 31 ms
10,368 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 85 ms
14,096 KB
testcase_14 AC 71 ms
14,172 KB
testcase_15 AC 40 ms
10,880 KB
testcase_16 AC 50 ms
12,256 KB
testcase_17 AC 114 ms
14,572 KB
testcase_18 AC 75 ms
13,016 KB
testcase_19 AC 132 ms
14,844 KB
testcase_20 AC 92 ms
13,376 KB
testcase_21 AC 67 ms
12,912 KB
testcase_22 AC 73 ms
14,116 KB
testcase_23 AC 91 ms
14,996 KB
testcase_24 AC 146 ms
14,944 KB
testcase_25 AC 119 ms
14,944 KB
testcase_26 AC 117 ms
14,996 KB
testcase_27 AC 83 ms
15,004 KB
testcase_28 AC 94 ms
14,932 KB
testcase_29 AC 128 ms
14,900 KB
testcase_30 AC 131 ms
14,984 KB
testcase_31 AC 144 ms
15,064 KB
testcase_32 AC 130 ms
14,892 KB
testcase_33 AC 145 ms
14,936 KB
testcase_34 AC 82 ms
14,968 KB
testcase_35 AC 30 ms
10,368 KB
testcase_36 AC 30 ms
10,368 KB
testcase_37 AC 30 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

S = list(input())

n = len(S)
counter = Counter(S)
ans = ''
for v, cnt in counter.items():
    if cnt == 1:
        ans = v
for i in range(n):
    if S[i] == ans:
        print(i + 1, ans)
        break
0