結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-11-24 04:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 176 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 75,736 KB
最終ジャッジ日時 2024-07-23 18:22:34
合計ジャッジ時間 3,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,892 KB
testcase_01 AC 40 ms
53,004 KB
testcase_02 AC 38 ms
52,108 KB
testcase_03 AC 40 ms
52,076 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 37 ms
52,732 KB
testcase_06 AC 38 ms
52,316 KB
testcase_07 AC 37 ms
51,760 KB
testcase_08 AC 38 ms
52,816 KB
testcase_09 AC 39 ms
51,828 KB
testcase_10 AC 39 ms
51,948 KB
testcase_11 AC 37 ms
52,444 KB
testcase_12 AC 38 ms
52,112 KB
testcase_13 AC 46 ms
63,516 KB
testcase_14 AC 44 ms
61,148 KB
testcase_15 AC 41 ms
59,556 KB
testcase_16 AC 40 ms
59,804 KB
testcase_17 AC 49 ms
69,504 KB
testcase_18 AC 45 ms
64,276 KB
testcase_19 AC 49 ms
72,488 KB
testcase_20 AC 46 ms
67,280 KB
testcase_21 AC 42 ms
62,032 KB
testcase_22 AC 42 ms
60,988 KB
testcase_23 AC 45 ms
63,148 KB
testcase_24 AC 55 ms
75,736 KB
testcase_25 AC 48 ms
69,128 KB
testcase_26 AC 47 ms
69,304 KB
testcase_27 AC 42 ms
61,228 KB
testcase_28 AC 45 ms
65,732 KB
testcase_29 AC 50 ms
72,460 KB
testcase_30 AC 49 ms
72,128 KB
testcase_31 AC 51 ms
74,680 KB
testcase_32 AC 50 ms
72,640 KB
testcase_33 AC 55 ms
75,648 KB
testcase_34 AC 39 ms
54,704 KB
testcase_35 AC 40 ms
52,860 KB
testcase_36 AC 38 ms
52,296 KB
testcase_37 AC 38 ms
51,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#別解3
S=input()

for i in range(len(S)-1):
    if S[i]!=S[i+1]:
        break

if i==0:
    j=2
else:
    j=0

if S[j]==S[i]:
    print(i+2,S[i+1])
else:
    print(i+1,S[i])
0