結果
| 問題 |
No.170 スワップ文字列(Easy)
|
| コンテスト | |
| ユーザー |
kohaku_kohaku
|
| 提出日時 | 2016-11-21 02:32:56 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 139 ms / 5,000 ms |
| コード長 | 628 bytes |
| コンパイル時間 | 2,154 ms |
| コンパイル使用メモリ | 74,648 KB |
| 実行使用メモリ | 41,316 KB |
| 最終ジャッジ日時 | 2024-12-23 00:45:43 |
| 合計ジャッジ時間 | 6,036 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String S = sc.next();
int L = S.length();
int [] al = new int [26];
for(int i=0; i<L; i++){
int t = S.charAt(i)-65;
al[t]++;
}
int r=fac(L);
for(int i=0; i<26; i++){
int t= fac(al[i]);
r/=t;
}
System.out.println(r-1);
}
static int fac(int x){
if(x<=1){
return 1;
}else{
int t = x*fac(x-1);
return t;
}
}
}
kohaku_kohaku