結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | tenten |
提出日時 | 2023-06-13 08:57:15 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 57 ms / 1,000 ms |
コード長 | 2,927 bytes |
コンパイル時間 | 2,546 ms |
コンパイル使用メモリ | 86,032 KB |
実行使用メモリ | 50,436 KB |
最終ジャッジ日時 | 2024-06-12 20:49:50 |
合計ジャッジ時間 | 4,054 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
50,116 KB |
testcase_01 | AC | 52 ms
50,436 KB |
testcase_02 | AC | 55 ms
50,188 KB |
testcase_03 | AC | 53 ms
50,276 KB |
testcase_04 | AC | 54 ms
50,232 KB |
testcase_05 | AC | 54 ms
50,188 KB |
testcase_06 | AC | 55 ms
50,320 KB |
testcase_07 | AC | 57 ms
50,292 KB |
testcase_08 | AC | 57 ms
50,340 KB |
testcase_09 | AC | 56 ms
50,236 KB |
testcase_10 | AC | 52 ms
50,356 KB |
testcase_11 | AC | 52 ms
50,236 KB |
testcase_12 | AC | 51 ms
50,308 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static final int MOD = 573; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] inputs = sc.next().toCharArray(); int[] counts = new int[26]; int length = inputs.length; for (char c : inputs) { counts[c - 'A']++; } HashMap<Integer, Integer> total = getFactMap(length); for (int x : counts) { if (x <= 1) { continue; } HashMap<Integer, Integer> sub = getFactMap(x); for (int y : sub.keySet()) { total.put(y, total.get(y) - sub.get(y)); } } int ans =1; for (int x : total.keySet()) { ans *= pow(x, total.get(x)); ans %= MOD; } System.out.println((ans - 1 + MOD) % MOD); } static HashMap<Integer, Integer> getFactMap(int x) { HashMap<Integer, Integer> ans = new HashMap<>(); for (int i = 2; i <= x; i++) { int y = i; for (int j = 2; j <= Math.sqrt(y); j++) { while (y % j == 0) { ans.put(j, ans.getOrDefault(j, 0) + 1); y /= j; } } if (y > 1) { ans.put(y, ans.getOrDefault(y, 0) + 1); } } return ans; } static int pow(int x, int p) { if (p == 0) { return 1; } else if (p % 2 == 0) { return pow(x * x % MOD, p / 2); } else { return pow(x, p - 1) * x % MOD; } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }