結果
| 問題 | No.170 スワップ文字列(Easy) | 
| コンテスト | |
| ユーザー |  ゆるく | 
| 提出日時 | 2015-05-03 03:24:48 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 66 ms / 5,000 ms | 
| コード長 | 279 bytes | 
| コンパイル時間 | 177 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 18,232 KB | 
| 最終ジャッジ日時 | 2024-12-23 00:26:57 | 
| 合計ジャッジ時間 | 2,338 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 21 | 
ソースコード
import sys #sys.setrecursionlimit(n) import heapq import re import bisect import random import math import itertools from collections import defaultdict, deque from copy import deepcopy from decimal import * s = list(input()) m = itertools.permutations(s) print(len(set(m)) - 1)
