結果
問題 | No.170 スワップ文字列(Easy) |
ユーザー | SagToki |
提出日時 | 2018-05-30 09:34:47 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,569 bytes |
コンパイル時間 | 3,797 ms |
コンパイル使用メモリ | 81,192 KB |
実行使用メモリ | 56,088 KB |
最終ジャッジ日時 | 2024-06-30 08:11:09 |
合計ジャッジ時間 | 7,917 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
54,096 KB |
testcase_01 | AC | 124 ms
53,996 KB |
testcase_02 | AC | 121 ms
54,092 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 122 ms
54,096 KB |
testcase_06 | AC | 123 ms
54,012 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 126 ms
54,092 KB |
testcase_12 | AC | 121 ms
54,064 KB |
testcase_13 | AC | 122 ms
53,976 KB |
testcase_14 | AC | 123 ms
54,172 KB |
testcase_15 | WA | - |
testcase_16 | AC | 121 ms
53,832 KB |
testcase_17 | AC | 123 ms
53,800 KB |
testcase_18 | WA | - |
testcase_19 | AC | 120 ms
54,016 KB |
testcase_20 | AC | 124 ms
54,064 KB |
testcase_21 | AC | 124 ms
53,976 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; import java.util.regex.Pattern; import java.util.regex.Matcher; //メインメソッドがおかしい public class SwapString { public static void main(String[] args){ ArrayList Character = Input(); Collections.sort(Character); for(int i = 0 ; i < Character.size() - 1 ;i++){ if(Character.get(i) == Character.get(i+1)){ Character.remove(i); i--; } } long Answer = 1 ; for(int j = 0 ; j < Character.size() ; j++){ Answer *= Combination(Character.size() - j , Character.size() - (j + 1)); } System.out.println(Answer - 1); } //文字列を入力して種類と長さを判定するメソッド public static ArrayList<Character> Input(){ Scanner scanner = new Scanner(System.in); String S = scanner.nextLine(); char[] Character = S.toCharArray(); try{ Pattern pattern = Pattern.compile(".*[^A-Z].*"); Matcher matcher = pattern.matcher(S); //文字列に含まれる文字が大文字のアルファベットであるかの判定 if(matcher.find()){ System.out.println("文字列は大文字アルファベットで入力してください"); System.exit(0); } //文字列の長さが1以上8以下であるかの判定 if(Character.length < 0 || Character.length > 8){ System.out.println("文字列は1文字以上8文字以下で入力してください"); System.exit(0); } }catch(Exception E){ System.out.println("想定外のエラーです"); } //char配列をリストに変換して戻り値にする ArrayList<Character> character = new ArrayList<>(); for(int i = 0 ; i < Character.length ; i++){ character.add(Character[i]); } return character; } //コンビネーションの計算を行うメソッド public static long Combination(int n , int m){ if( n < m || m < 0 ) { System.out.println( "引数の値が不正です" ); System.exit(0); } long Result = 1; m = ( n - m < m ? n - m : m ); for( int ns = n - m + 1, ms = 1; ms <= m; ns ++, ms ++ ) { Result *= ns; Result /= ms; } return Result; } }