結果

問題 No.170 スワップ文字列(Easy)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-12 00:19:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 74,996 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-12-23 00:25:02
合計ジャッジ時間 6,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,392 KB
testcase_01 AC 130 ms
41,468 KB
testcase_02 AC 117 ms
41,260 KB
testcase_03 AC 130 ms
40,256 KB
testcase_04 AC 134 ms
41,736 KB
testcase_05 AC 131 ms
41,540 KB
testcase_06 AC 131 ms
41,132 KB
testcase_07 AC 131 ms
41,072 KB
testcase_08 AC 121 ms
41,248 KB
testcase_09 AC 133 ms
41,272 KB
testcase_10 AC 131 ms
41,156 KB
testcase_11 AC 129 ms
39,808 KB
testcase_12 AC 134 ms
41,168 KB
testcase_13 AC 132 ms
41,500 KB
testcase_14 AC 129 ms
41,612 KB
testcase_15 AC 131 ms
41,520 KB
testcase_16 AC 118 ms
40,204 KB
testcase_17 AC 131 ms
41,168 KB
testcase_18 AC 130 ms
41,496 KB
testcase_19 AC 129 ms
41,204 KB
testcase_20 AC 133 ms
41,712 KB
testcase_21 AC 131 ms
41,428 KB
testcase_22 AC 130 ms
41,528 KB
testcase_23 AC 130 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        String s = koko.next();
        int n = s.length();
        char[] ss = s.toCharArray();
        Arrays.sort(ss);
        int count = 1;
        int mo = 1;
        int chi = n;
        int rest = n;
        for(int i=1; i<n; i++){
            if(ss[i]==ss[i-1]){
                count = count + 1;
                rest = rest - 1;
            }else{
                count = 1;
                rest = rest-1;
            }
            mo = count*mo;
            chi = chi*rest;
        }
        int ans = chi/mo;
        System.out.println(ans-1);
    }
}
0