結果

問題 No.170 スワップ文字列(Easy)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-12 00:19:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 83,836 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-06-02 06:14:01
合計ジャッジ時間 5,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,280 KB
testcase_01 AC 97 ms
41,152 KB
testcase_02 AC 111 ms
41,380 KB
testcase_03 AC 100 ms
41,636 KB
testcase_04 AC 96 ms
41,408 KB
testcase_05 AC 102 ms
40,104 KB
testcase_06 AC 111 ms
41,136 KB
testcase_07 AC 101 ms
41,400 KB
testcase_08 AC 112 ms
41,488 KB
testcase_09 AC 109 ms
41,132 KB
testcase_10 AC 99 ms
41,008 KB
testcase_11 AC 108 ms
41,420 KB
testcase_12 AC 102 ms
40,148 KB
testcase_13 AC 112 ms
41,140 KB
testcase_14 AC 100 ms
41,112 KB
testcase_15 AC 111 ms
41,204 KB
testcase_16 AC 114 ms
41,168 KB
testcase_17 AC 116 ms
40,964 KB
testcase_18 AC 119 ms
41,140 KB
testcase_19 AC 101 ms
40,968 KB
testcase_20 AC 115 ms
40,992 KB
testcase_21 AC 115 ms
40,908 KB
testcase_22 AC 116 ms
41,396 KB
testcase_23 AC 114 ms
41,260 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