結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-09-07 23:05:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 94 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 74,196 KB
最終ジャッジ日時 2024-07-23 18:21:58
合計ジャッジ時間 3,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,564 KB
testcase_01 AC 38 ms
53,296 KB
testcase_02 AC 38 ms
52,232 KB
testcase_03 AC 38 ms
52,628 KB
testcase_04 AC 37 ms
52,364 KB
testcase_05 AC 37 ms
52,548 KB
testcase_06 AC 39 ms
53,584 KB
testcase_07 AC 38 ms
52,104 KB
testcase_08 AC 37 ms
51,880 KB
testcase_09 AC 37 ms
51,752 KB
testcase_10 AC 41 ms
52,224 KB
testcase_11 AC 38 ms
53,252 KB
testcase_12 AC 37 ms
52,008 KB
testcase_13 AC 53 ms
70,584 KB
testcase_14 AC 51 ms
69,724 KB
testcase_15 AC 39 ms
54,920 KB
testcase_16 AC 46 ms
60,472 KB
testcase_17 AC 57 ms
72,716 KB
testcase_18 AC 47 ms
63,832 KB
testcase_19 AC 54 ms
73,888 KB
testcase_20 AC 50 ms
66,796 KB
testcase_21 AC 48 ms
64,212 KB
testcase_22 AC 51 ms
70,280 KB
testcase_23 AC 55 ms
73,508 KB
testcase_24 AC 55 ms
73,636 KB
testcase_25 AC 56 ms
73,680 KB
testcase_26 AC 56 ms
73,644 KB
testcase_27 AC 58 ms
73,632 KB
testcase_28 AC 58 ms
73,308 KB
testcase_29 AC 56 ms
73,832 KB
testcase_30 AC 58 ms
73,500 KB
testcase_31 AC 56 ms
73,908 KB
testcase_32 AC 55 ms
73,308 KB
testcase_33 AC 58 ms
74,196 KB
testcase_34 AC 57 ms
73,664 KB
testcase_35 AC 38 ms
52,312 KB
testcase_36 AC 37 ms
52,112 KB
testcase_37 AC 36 ms
53,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

[a,b]=list(set(S))

if S.count(a)==1:
    x=a
else:
    x=b

print(S.index(x)+1,x)
0