結果

問題 No.171 スワップ文字列(Med)
ユーザー kenkooookenkoooo
提出日時 2015-03-24 23:02:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 1,346 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 78,064 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-06-29 00:34:54
合計ジャッジ時間 4,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,876 KB
testcase_01 AC 110 ms
40,020 KB
testcase_02 AC 133 ms
40,332 KB
testcase_03 AC 112 ms
40,704 KB
testcase_04 AC 103 ms
40,268 KB
testcase_05 AC 118 ms
41,104 KB
testcase_06 AC 131 ms
41,072 KB
testcase_07 AC 134 ms
41,360 KB
testcase_08 AC 165 ms
41,012 KB
testcase_09 AC 157 ms
41,364 KB
testcase_10 AC 113 ms
40,972 KB
testcase_11 AC 110 ms
41,000 KB
testcase_12 AC 116 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) throws Exception {
		Scanner scanner = new Scanner(System.in);
		char[] input = scanner.next().toCharArray();
		scanner.close();

		int[] alphabets = new int[26];
		for (int i = 0; i < input.length; i++) {
			alphabets[(int) input[i] - 'A']++;
		}

		ArrayList<Integer> multiply = new ArrayList<Integer>();
		for (int i = 1; i <= input.length; i++) {
			multiply.add(i);
		}
		int[] m = new int[multiply.size()];
		for (int i = 0; i < multiply.size(); i++) {
			m[i] = multiply.get(i);
		}

		ArrayList<Integer> divders = new ArrayList<Integer>();
		for (int i = 0; i < alphabets.length; i++) {
			for (int j = 1; j <= alphabets[i]; j++) {
				divders.add(j);
			}
		}
		int[] d = new int[divders.size()];
		for (int i = 0; i < divders.size(); i++) {
			d[i] = divders.get(i);
		}

		for (int i = 0; i < d.length; i++) {
			for (int j = 0; j < m.length; j++) {
				long gcd = gcd(d[i], m[j]);
				d[i] /= (int) gcd;
				m[j] /= (int) gcd;
			}
		}

		long ans = 1;
		for (int i = 0; i < m.length; i++) {
			// System.out.println(mIntegers[i]);
			ans *= m[i];
			ans %= 573;
		}

		if (ans == 0) {
			ans += 573;
		}

		System.out.println(ans - 1);

	}

	static long gcd(long a, long b) {
		return b == 0 ? a : gcd(b, a % b);
	}
}
0