結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | tenten |
提出日時 | 2021-05-20 11:19:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 109 ms / 1,000 ms |
コード長 | 2,084 bytes |
コンパイル時間 | 2,295 ms |
コンパイル使用メモリ | 80,396 KB |
実行使用メモリ | 56,260 KB |
最終ジャッジ日時 | 2024-10-10 07:12:42 |
合計ジャッジ時間 | 4,054 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,424 KB |
testcase_01 | AC | 53 ms
50,008 KB |
testcase_02 | AC | 92 ms
51,500 KB |
testcase_03 | AC | 53 ms
50,008 KB |
testcase_04 | AC | 55 ms
49,980 KB |
testcase_05 | AC | 82 ms
51,128 KB |
testcase_06 | AC | 100 ms
53,948 KB |
testcase_07 | AC | 103 ms
53,884 KB |
testcase_08 | AC | 109 ms
56,052 KB |
testcase_09 | AC | 109 ms
56,260 KB |
testcase_10 | AC | 52 ms
50,088 KB |
testcase_11 | AC | 52 ms
50,404 KB |
testcase_12 | AC | 53 ms
50,344 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static final int MOD = 573; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int count = 0; int[] alpha = new int[26]; for (char c : sc.next().toCharArray()) { alpha[c - 'A']++; count++; } ArrayList<HashMap<Integer, Integer>> list = new ArrayList<>(); list.add(new HashMap<>()); list.add(new HashMap<>()); for (int i = 2; i <= count; i++) { HashMap<Integer, Integer> tmp = (HashMap<Integer, Integer>)list.get(i - 1).clone(); int x = i; for (int j = 2; j <= Math.sqrt(x); j++) { while (x % j == 0) { tmp.put(j, tmp.getOrDefault(j, 0) + 1); x /= j; } } if (x > 1) { tmp.put(x, tmp.getOrDefault(x, 0) + 1); } list.add(tmp); } HashMap<Integer, Integer> base = (HashMap<Integer, Integer>)list.get(count); for (int x : alpha) { for (int y : list.get(x).keySet()) { base.put(y, base.get(y) - list.get(x).get(y)); } } int ans = 1; for (int x : base.keySet()) { for (int i = 0; i < base.get(x); i++) { ans *= x; ans %= MOD; } } System.out.println((ans - 1 + MOD) % MOD); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }