結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー convexineqconvexineq
提出日時 2021-01-23 10:26:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 1,000 ms
コード長 150 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,352 KB
最終ジャッジ日時 2024-06-09 14:17:29
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,124 KB
testcase_01 AC 35 ms
54,672 KB
testcase_02 AC 35 ms
53,812 KB
testcase_03 AC 34 ms
54,808 KB
testcase_04 AC 33 ms
53,972 KB
testcase_05 AC 34 ms
54,112 KB
testcase_06 AC 34 ms
54,872 KB
testcase_07 AC 34 ms
54,332 KB
testcase_08 AC 34 ms
55,068 KB
testcase_09 AC 35 ms
53,960 KB
testcase_10 AC 34 ms
53,984 KB
testcase_11 AC 40 ms
53,948 KB
testcase_12 AC 36 ms
54,140 KB
testcase_13 AC 62 ms
76,032 KB
testcase_14 AC 62 ms
76,180 KB
testcase_15 AC 40 ms
63,792 KB
testcase_16 AC 57 ms
75,580 KB
testcase_17 AC 66 ms
75,816 KB
testcase_18 AC 57 ms
75,868 KB
testcase_19 AC 66 ms
76,352 KB
testcase_20 AC 57 ms
76,020 KB
testcase_21 AC 56 ms
75,776 KB
testcase_22 AC 64 ms
75,984 KB
testcase_23 AC 70 ms
76,196 KB
testcase_24 AC 66 ms
76,144 KB
testcase_25 AC 67 ms
76,188 KB
testcase_26 AC 69 ms
76,172 KB
testcase_27 AC 73 ms
76,016 KB
testcase_28 AC 74 ms
76,152 KB
testcase_29 AC 68 ms
75,980 KB
testcase_30 AC 70 ms
76,044 KB
testcase_31 AC 65 ms
76,324 KB
testcase_32 AC 67 ms
75,976 KB
testcase_33 AC 67 ms
76,020 KB
testcase_34 AC 69 ms
76,244 KB
testcase_35 AC 35 ms
53,632 KB
testcase_36 AC 36 ms
54,212 KB
testcase_37 AC 35 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
s = input()
d = list(Counter(s).items())
if d[0][1] == 1:
    x = d[0][0]
else:
    x = d[1][0]
print(s.index(x)+1, x)
0