結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー nohakai3nohakai3
提出日時 2022-07-08 17:01:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 108 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 10,708 KB
実行使用メモリ 12,496 KB
最終ジャッジ日時 2023-08-27 16:08:59
合計ジャッジ時間 3,497 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,780 KB
testcase_01 AC 13 ms
7,820 KB
testcase_02 AC 13 ms
7,780 KB
testcase_03 AC 13 ms
7,912 KB
testcase_04 AC 13 ms
7,776 KB
testcase_05 AC 13 ms
7,796 KB
testcase_06 AC 14 ms
7,800 KB
testcase_07 AC 13 ms
7,924 KB
testcase_08 AC 14 ms
7,892 KB
testcase_09 AC 13 ms
7,876 KB
testcase_10 AC 13 ms
7,880 KB
testcase_11 AC 14 ms
7,908 KB
testcase_12 AC 13 ms
7,736 KB
testcase_13 AC 33 ms
11,512 KB
testcase_14 AC 31 ms
11,300 KB
testcase_15 AC 16 ms
8,296 KB
testcase_16 AC 21 ms
9,484 KB
testcase_17 AC 39 ms
11,816 KB
testcase_18 AC 26 ms
10,188 KB
testcase_19 AC 41 ms
12,096 KB
testcase_20 AC 31 ms
10,532 KB
testcase_21 AC 27 ms
10,212 KB
testcase_22 AC 32 ms
11,508 KB
testcase_23 AC 39 ms
12,272 KB
testcase_24 AC 44 ms
12,380 KB
testcase_25 AC 40 ms
12,376 KB
testcase_26 AC 41 ms
12,464 KB
testcase_27 AC 37 ms
12,312 KB
testcase_28 AC 38 ms
12,416 KB
testcase_29 AC 42 ms
12,272 KB
testcase_30 AC 41 ms
12,324 KB
testcase_31 AC 41 ms
12,496 KB
testcase_32 AC 41 ms
12,456 KB
testcase_33 AC 43 ms
12,444 KB
testcase_34 AC 35 ms
12,472 KB
testcase_35 AC 14 ms
7,816 KB
testcase_36 AC 14 ms
7,820 KB
testcase_37 AC 13 ms
7,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=list(input())
x=list(set(s))
for a in x:
    if s.count(a)==1:
        print(str(s.index(a)+1)+" "+str(a))
0