結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-11-24 03:54:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 146 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 61,580 KB
最終ジャッジ日時 2024-07-23 18:22:24
合計ジャッジ時間 3,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,940 KB
testcase_01 AC 37 ms
53,648 KB
testcase_02 AC 38 ms
52,804 KB
testcase_03 AC 36 ms
52,820 KB
testcase_04 AC 37 ms
52,016 KB
testcase_05 AC 37 ms
52,620 KB
testcase_06 AC 36 ms
52,236 KB
testcase_07 AC 38 ms
52,008 KB
testcase_08 AC 38 ms
52,332 KB
testcase_09 AC 37 ms
52,072 KB
testcase_10 AC 37 ms
53,240 KB
testcase_11 AC 37 ms
52,912 KB
testcase_12 AC 37 ms
52,168 KB
testcase_13 AC 43 ms
60,468 KB
testcase_14 AC 43 ms
60,304 KB
testcase_15 AC 41 ms
58,104 KB
testcase_16 AC 42 ms
59,344 KB
testcase_17 AC 44 ms
60,836 KB
testcase_18 AC 42 ms
59,864 KB
testcase_19 AC 44 ms
60,544 KB
testcase_20 AC 43 ms
59,316 KB
testcase_21 AC 42 ms
59,816 KB
testcase_22 AC 44 ms
61,308 KB
testcase_23 AC 46 ms
61,320 KB
testcase_24 AC 45 ms
61,108 KB
testcase_25 AC 45 ms
60,660 KB
testcase_26 AC 44 ms
60,244 KB
testcase_27 AC 46 ms
61,476 KB
testcase_28 AC 45 ms
60,384 KB
testcase_29 AC 44 ms
60,832 KB
testcase_30 AC 45 ms
60,848 KB
testcase_31 AC 45 ms
60,804 KB
testcase_32 AC 44 ms
60,648 KB
testcase_33 AC 44 ms
61,580 KB
testcase_34 AC 44 ms
60,432 KB
testcase_35 AC 37 ms
52,548 KB
testcase_36 AC 37 ms
52,828 KB
testcase_37 AC 36 ms
53,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#別解2
S=input()
a,b,c=S[:3]

if a==b:
    x=a
elif b==c:
    x=b
else:
    x=c

for i in range(len(S)):
    if S[i]!=x:
        print(i+1,S[i])
0