結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | noko2250 |
提出日時 | 2015-03-23 18:06:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 357 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-29 00:23:33 |
合計ジャッジ時間 | 908 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 26 ms
10,624 KB |
testcase_11 | AC | 26 ms
10,624 KB |
testcase_12 | AC | 26 ms
10,624 KB |
ソースコード
#!/c/Python34/python # coding: utf-8 def main(): S = input() ans = 1 a = [0] * 26 for i in range(len(S)): ans *= i+1 a[ord(S[i])-ord('A')] += 1 for i in range(26): while a[i] > 1: ans /= a[i] a[i] -= 1 mod = 573 print((int(ans)-1) % mod) if __name__ == '__main__': main()