結果

問題 No.2593 Reorder and Mod 120
ユーザー tentententen
提出日時 2024-08-01 11:00:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,791 bytes
コンパイル時間 3,262 ms
コンパイル使用メモリ 80,880 KB
実行使用メモリ 52,460 KB
最終ジャッジ日時 2024-08-01 11:00:44
合計ジャッジ時間 7,431 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
51,008 KB
testcase_01 AC 79 ms
51,048 KB
testcase_02 AC 80 ms
51,060 KB
testcase_03 AC 80 ms
50,708 KB
testcase_04 AC 81 ms
50,740 KB
testcase_05 AC 91 ms
51,128 KB
testcase_06 AC 80 ms
51,184 KB
testcase_07 AC 84 ms
50,904 KB
testcase_08 AC 77 ms
51,060 KB
testcase_09 AC 79 ms
51,084 KB
testcase_10 AC 84 ms
51,024 KB
testcase_11 AC 76 ms
51,160 KB
testcase_12 AC 90 ms
51,088 KB
testcase_13 AC 148 ms
52,320 KB
testcase_14 AC 112 ms
52,080 KB
testcase_15 AC 143 ms
52,372 KB
testcase_16 AC 81 ms
50,732 KB
testcase_17 AC 108 ms
52,208 KB
testcase_18 AC 101 ms
51,924 KB
testcase_19 AC 147 ms
52,460 KB
testcase_20 AC 145 ms
52,320 KB
testcase_21 AC 140 ms
52,460 KB
testcase_22 AC 143 ms
52,408 KB
testcase_23 AC 147 ms
52,376 KB
testcase_24 AC 145 ms
52,400 KB
testcase_25 AC 150 ms
52,432 KB
testcase_26 AC 139 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static boolean[] enable = new boolean[40];
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] counts = new int[9];
        for (char c : sc.next().toCharArray()) {
            counts[c - '1']++;
        }
        calc(Math.min(n, 3), counts, 0);
        System.out.println(IntStream.range(0, 40).filter(i -> enable[i]).count());
    }
    
    static void calc(int idx, int[] counts, int value) {
        if (idx == 0) {
            enable[value % 40] = true;
            return;
        }
        for (int i = 0; i < 9; i++) {
            if (counts[i] == 0) {
                continue;
            }
            counts[i]--;
            calc(idx - 1, counts, value * 10 + i + 1);
            counts[i]++;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0