結果

問題 No.2419 MMA文字列2
ユーザー やありやあり
提出日時 2023-08-12 15:28:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,620 KB
最終ジャッジ日時 2024-11-20 02:30:08
合計ジャッジ時間 57,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,312 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 29 ms
22,144 KB
testcase_06 AC 30 ms
17,312 KB
testcase_07 AC 30 ms
22,528 KB
testcase_08 WA -
testcase_09 AC 30 ms
21,504 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
ans = 0
l = len(S)
for i in range (0,l):
#	print(S[i:-1].count(S[i]))
	if S[i:-1].count(S[i]) >= 2 :
		ans += l - S.index(S[i], i+1) - 1
print(ans)
0