結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 👑 KazunKazun
提出日時 2021-01-20 00:30:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 1,000 ms
コード長 136 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-05-10 01:46:48
合計ジャッジ時間 5,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
63,488 KB
testcase_01 AC 57 ms
63,616 KB
testcase_02 AC 56 ms
64,000 KB
testcase_03 AC 58 ms
63,616 KB
testcase_04 AC 61 ms
63,872 KB
testcase_05 AC 59 ms
63,744 KB
testcase_06 AC 63 ms
63,488 KB
testcase_07 AC 60 ms
63,488 KB
testcase_08 AC 59 ms
63,616 KB
testcase_09 AC 58 ms
63,744 KB
testcase_10 AC 58 ms
63,744 KB
testcase_11 AC 62 ms
63,616 KB
testcase_12 AC 62 ms
63,744 KB
testcase_13 AC 84 ms
65,792 KB
testcase_14 AC 82 ms
65,536 KB
testcase_15 AC 62 ms
64,128 KB
testcase_16 AC 68 ms
64,512 KB
testcase_17 AC 86 ms
66,176 KB
testcase_18 AC 71 ms
65,024 KB
testcase_19 AC 82 ms
66,304 KB
testcase_20 AC 72 ms
65,280 KB
testcase_21 AC 71 ms
65,280 KB
testcase_22 AC 78 ms
65,536 KB
testcase_23 AC 83 ms
66,304 KB
testcase_24 AC 83 ms
66,304 KB
testcase_25 AC 81 ms
66,304 KB
testcase_26 AC 82 ms
66,304 KB
testcase_27 AC 84 ms
66,048 KB
testcase_28 AC 82 ms
66,344 KB
testcase_29 AC 89 ms
66,176 KB
testcase_30 AC 89 ms
66,304 KB
testcase_31 AC 89 ms
66,048 KB
testcase_32 AC 89 ms
66,432 KB
testcase_33 AC 85 ms
65,920 KB
testcase_34 AC 82 ms
66,176 KB
testcase_35 AC 56 ms
63,872 KB
testcase_36 AC 58 ms
63,488 KB
testcase_37 AC 60 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#別解7
from string import ascii_letters as X
X+="0123456789"
S=input()

for x in X:
    if S.count(x)==1:
        print(S.find(x)+1,x)
0