結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー tobusakanatobusakana
提出日時 2022-11-27 22:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 171 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,956 KB
実行使用メモリ 61,552 KB
最終ジャッジ日時 2024-10-04 13:21:59
合計ジャッジ時間 3,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,188 KB
testcase_01 AC 33 ms
52,696 KB
testcase_02 AC 34 ms
52,272 KB
testcase_03 AC 37 ms
52,504 KB
testcase_04 AC 36 ms
52,512 KB
testcase_05 AC 34 ms
52,064 KB
testcase_06 AC 35 ms
53,196 KB
testcase_07 AC 33 ms
52,072 KB
testcase_08 AC 32 ms
52,852 KB
testcase_09 AC 32 ms
52,836 KB
testcase_10 AC 34 ms
52,268 KB
testcase_11 AC 32 ms
52,480 KB
testcase_12 AC 33 ms
53,356 KB
testcase_13 AC 37 ms
60,324 KB
testcase_14 AC 38 ms
61,056 KB
testcase_15 AC 37 ms
59,564 KB
testcase_16 AC 37 ms
58,620 KB
testcase_17 AC 40 ms
60,276 KB
testcase_18 AC 36 ms
59,988 KB
testcase_19 AC 41 ms
60,116 KB
testcase_20 AC 42 ms
59,196 KB
testcase_21 AC 45 ms
59,868 KB
testcase_22 AC 43 ms
61,444 KB
testcase_23 AC 39 ms
60,308 KB
testcase_24 AC 40 ms
61,460 KB
testcase_25 AC 39 ms
60,364 KB
testcase_26 AC 39 ms
60,528 KB
testcase_27 AC 38 ms
60,564 KB
testcase_28 AC 40 ms
61,392 KB
testcase_29 AC 41 ms
60,680 KB
testcase_30 AC 43 ms
60,156 KB
testcase_31 AC 41 ms
61,204 KB
testcase_32 AC 42 ms
61,552 KB
testcase_33 AC 44 ms
61,064 KB
testcase_34 AC 39 ms
54,440 KB
testcase_35 AC 37 ms
53,300 KB
testcase_36 AC 36 ms
51,824 KB
testcase_37 AC 35 ms
52,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
cnt0 = S.count(S[0])

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