結果

問題 No.171 スワップ文字列(Med)
ユーザー tanimani364tanimani364
提出日時 2021-03-22 22:01:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 482 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 65,904 KB
最終ジャッジ日時 2024-05-03 10:59:18
合計ジャッジ時間 1,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
65,904 KB
testcase_01 AC 49 ms
63,900 KB
testcase_02 AC 50 ms
65,216 KB
testcase_03 AC 53 ms
65,480 KB
testcase_04 AC 53 ms
64,940 KB
testcase_05 AC 54 ms
64,608 KB
testcase_06 AC 50 ms
64,500 KB
testcase_07 AC 50 ms
65,436 KB
testcase_08 AC 54 ms
65,484 KB
testcase_09 AC 51 ms
65,148 KB
testcase_10 AC 52 ms
64,148 KB
testcase_11 AC 50 ms
64,684 KB
testcase_12 AC 51 ms
64,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#coding:utf-8

import math
import string
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt



def main():
	read=stdin.readline

	#edit here!
	s=read()
	n=len(s)-1
	
	fact=[1]*(n+1)
	for i in range(n):
		fact[i+1]=fact[i]*(i+1)

	cnt=[0]*26
	
	base=ord('A')
	res=fact[n]

	for i in range(n):
		cnt[ord(s[i])-base]+=1
	
	for i in range(26):
		res//=fact[cnt[i]]

	res-=1
	res%=573
	print(res)

if __name__ == '__main__':
	main()
0