結果

問題 No.170 スワップ文字列(Easy)
ユーザー fjafjafjafjafjafja
提出日時 2017-10-01 23:45:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 3,518 ms
コンパイル使用メモリ 78,028 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-11-15 21:50:41
合計ジャッジ時間 8,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,968 KB
testcase_01 AC 124 ms
54,268 KB
testcase_02 AC 125 ms
53,772 KB
testcase_03 AC 123 ms
53,688 KB
testcase_04 AC 121 ms
53,696 KB
testcase_05 AC 117 ms
54,076 KB
testcase_06 AC 118 ms
53,772 KB
testcase_07 AC 120 ms
54,008 KB
testcase_08 AC 122 ms
53,984 KB
testcase_09 AC 122 ms
53,956 KB
testcase_10 AC 120 ms
53,872 KB
testcase_11 AC 121 ms
54,052 KB
testcase_12 AC 122 ms
54,152 KB
testcase_13 AC 123 ms
53,736 KB
testcase_14 AC 123 ms
54,020 KB
testcase_15 AC 123 ms
53,708 KB
testcase_16 AC 123 ms
53,716 KB
testcase_17 AC 124 ms
54,152 KB
testcase_18 AC 123 ms
54,056 KB
testcase_19 AC 108 ms
52,776 KB
testcase_20 AC 123 ms
53,732 KB
testcase_21 AC 122 ms
53,932 KB
testcase_22 AC 122 ms
53,836 KB
testcase_23 AC 123 ms
53,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N170 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s=sc.next();
		int[] cnt=new int[s.length()];
		for(int i=0;i<s.length();i++){
			if(cnt[i]==-1){
				continue;
			}
			String buf=s.substring(i,i+1);
			cnt[i]=1;
			for(int j=i+1;j<s.length();j++){
				if(buf.equals(s.substring(j,j+1))){
					cnt[i]++;
					cnt[j]=-1;
				}
			}
		}
		int ans=1;
		for(int i=s.length();i>0;i--){
			ans*=i;
		}
		for(int i=0;i<s.length();i++){
			if(cnt[i]>=2){
				for(int j=cnt[i];j>0;j--){
					ans/=j;
				}
			}
		}
		System.out.println(ans-1);
	}

}
0