結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー neterukunneterukun
提出日時 2021-01-22 21:23:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 1,000 ms
コード長 146 bytes
コンパイル時間 1,645 ms
コンパイル使用メモリ 86,988 KB
実行使用メモリ 77,276 KB
最終ジャッジ日時 2023-08-27 17:08:55
合計ジャッジ時間 6,136 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,144 KB
testcase_01 AC 68 ms
71,424 KB
testcase_02 AC 69 ms
71,504 KB
testcase_03 AC 68 ms
71,224 KB
testcase_04 AC 69 ms
71,424 KB
testcase_05 AC 69 ms
71,424 KB
testcase_06 AC 67 ms
71,024 KB
testcase_07 AC 66 ms
71,276 KB
testcase_08 AC 64 ms
71,500 KB
testcase_09 AC 64 ms
71,388 KB
testcase_10 AC 63 ms
71,028 KB
testcase_11 AC 66 ms
71,372 KB
testcase_12 AC 64 ms
71,368 KB
testcase_13 AC 91 ms
76,848 KB
testcase_14 AC 92 ms
77,128 KB
testcase_15 AC 70 ms
75,800 KB
testcase_16 AC 80 ms
77,040 KB
testcase_17 AC 87 ms
77,000 KB
testcase_18 AC 81 ms
76,428 KB
testcase_19 AC 90 ms
77,052 KB
testcase_20 AC 84 ms
76,492 KB
testcase_21 AC 85 ms
76,872 KB
testcase_22 AC 94 ms
76,924 KB
testcase_23 AC 98 ms
77,004 KB
testcase_24 AC 87 ms
76,720 KB
testcase_25 AC 93 ms
77,044 KB
testcase_26 AC 91 ms
77,276 KB
testcase_27 AC 100 ms
77,108 KB
testcase_28 AC 94 ms
77,052 KB
testcase_29 AC 89 ms
77,000 KB
testcase_30 AC 92 ms
76,820 KB
testcase_31 AC 90 ms
77,012 KB
testcase_32 AC 94 ms
76,848 KB
testcase_33 AC 83 ms
76,892 KB
testcase_34 AC 94 ms
77,072 KB
testcase_35 AC 67 ms
71,296 KB
testcase_36 AC 65 ms
71,156 KB
testcase_37 AC 66 ms
71,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

cnt = {}
for i in s:
    cnt[i] = cnt.get(i, 0) + 1
for i in cnt:
    if cnt[i] == 1:
        char = i
print(s.index(char) + 1, char)
0