結果

問題 No.170 スワップ文字列(Easy)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-17 18:12:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 956 bytes
コンパイル時間 3,209 ms
コンパイル使用メモリ 78,520 KB
実行使用メモリ 54,048 KB
最終ジャッジ日時 2024-06-02 06:27:56
合計ジャッジ時間 6,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,912 KB
testcase_01 AC 106 ms
52,888 KB
testcase_02 AC 108 ms
52,876 KB
testcase_03 AC 116 ms
53,832 KB
testcase_04 AC 115 ms
54,024 KB
testcase_05 AC 108 ms
52,724 KB
testcase_06 AC 114 ms
53,892 KB
testcase_07 AC 104 ms
52,888 KB
testcase_08 AC 116 ms
53,972 KB
testcase_09 AC 108 ms
53,132 KB
testcase_10 AC 120 ms
53,852 KB
testcase_11 AC 104 ms
52,952 KB
testcase_12 AC 118 ms
54,044 KB
testcase_13 AC 117 ms
54,044 KB
testcase_14 AC 118 ms
53,904 KB
testcase_15 AC 123 ms
53,812 KB
testcase_16 AC 113 ms
53,912 KB
testcase_17 AC 106 ms
52,580 KB
testcase_18 AC 118 ms
53,968 KB
testcase_19 AC 117 ms
53,976 KB
testcase_20 AC 118 ms
54,040 KB
testcase_21 AC 120 ms
53,948 KB
testcase_22 AC 118 ms
54,048 KB
testcase_23 AC 108 ms
53,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise93{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String str = sc.next();

    int baseR = getRoutes(str.length());

    ArrayList<Integer> s = new ArrayList<Integer>();
    ArrayList<Character> done = new ArrayList<Character>();

    for(int i = 0; i < str.length(); i++){
      if(done.indexOf(str.charAt(i)) != -1){
        continue;
      }
      int count = 1;
      for (int j = i + 1; j < str.length(); j++){
        if(str.charAt(i) == str.charAt(j)){
          count++;
        }
      }
      if(count > 0){
        s.add(count);
        done.add(str.charAt(i));
      }
    }
    int sameR = 1;
    for(int i = 0; i < s.size(); i++){
      sameR *= getRoutes(s.get(i));
    }
    System.out.println(baseR / sameR - 1);
  }
  private static int getRoutes(int num){
    int r = 1;
    for (int i = 0; i < num; i++){
      r *= num - i;
    }
    return r;
  }
}
0