結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2020-11-24 04:25:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 194 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 61,400 KB
最終ジャッジ日時 2024-07-23 18:21:50
合計ジャッジ時間 4,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,548 KB
testcase_01 AC 38 ms
52,996 KB
testcase_02 AC 37 ms
53,128 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 38 ms
52,552 KB
testcase_05 AC 42 ms
52,200 KB
testcase_06 AC 38 ms
53,036 KB
testcase_07 AC 39 ms
52,968 KB
testcase_08 AC 37 ms
52,884 KB
testcase_09 AC 37 ms
52,888 KB
testcase_10 AC 38 ms
52,436 KB
testcase_11 AC 41 ms
52,000 KB
testcase_12 AC 37 ms
52,884 KB
testcase_13 AC 44 ms
61,400 KB
testcase_14 AC 44 ms
59,812 KB
testcase_15 AC 40 ms
58,776 KB
testcase_16 AC 43 ms
58,408 KB
testcase_17 AC 45 ms
61,252 KB
testcase_18 AC 43 ms
59,376 KB
testcase_19 AC 46 ms
60,796 KB
testcase_20 AC 43 ms
60,536 KB
testcase_21 AC 43 ms
59,872 KB
testcase_22 AC 43 ms
59,656 KB
testcase_23 AC 46 ms
60,768 KB
testcase_24 AC 46 ms
60,612 KB
testcase_25 AC 46 ms
60,528 KB
testcase_26 AC 45 ms
60,824 KB
testcase_27 AC 45 ms
60,228 KB
testcase_28 AC 45 ms
60,900 KB
testcase_29 AC 44 ms
61,388 KB
testcase_30 AC 45 ms
61,060 KB
testcase_31 AC 44 ms
60,468 KB
testcase_32 AC 45 ms
61,148 KB
testcase_33 AC 44 ms
60,708 KB
testcase_34 AC 39 ms
54,484 KB
testcase_35 AC 37 ms
52,348 KB
testcase_36 AC 38 ms
52,684 KB
testcase_37 AC 37 ms
52,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#別解4
S=input()

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