結果

問題 No.1644 Eight Digits
ユーザー tentententen
提出日時 2024-07-04 18:03:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 70 ms / 1,000 ms
コード長 1,634 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 78,084 KB
実行使用メモリ 37,824 KB
最終ジャッジ日時 2024-07-04 18:03:13
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
37,568 KB
testcase_01 AC 65 ms
37,424 KB
testcase_02 AC 56 ms
36,772 KB
testcase_03 AC 69 ms
37,456 KB
testcase_04 AC 61 ms
37,356 KB
testcase_05 AC 58 ms
36,888 KB
testcase_06 AC 58 ms
37,148 KB
testcase_07 AC 60 ms
37,328 KB
testcase_08 AC 61 ms
37,240 KB
testcase_09 AC 60 ms
37,376 KB
testcase_10 AC 60 ms
37,496 KB
testcase_11 AC 56 ms
37,376 KB
testcase_12 AC 56 ms
36,872 KB
testcase_13 AC 56 ms
36,876 KB
testcase_14 AC 69 ms
37,184 KB
testcase_15 AC 59 ms
36,920 KB
testcase_16 AC 70 ms
37,336 KB
testcase_17 AC 57 ms
37,088 KB
testcase_18 AC 58 ms
37,000 KB
testcase_19 AC 66 ms
37,824 KB
testcase_20 AC 64 ms
37,748 KB
testcase_21 AC 69 ms
37,260 KB
testcase_22 AC 59 ms
37,240 KB
testcase_23 AC 59 ms
36,788 KB
testcase_24 AC 55 ms
37,100 KB
testcase_25 AC 65 ms
37,056 KB
testcase_26 AC 56 ms
36,908 KB
testcase_27 AC 69 ms
37,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int ans = 0;
    static int k;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        k = sc.nextInt();
        check(8, new boolean[9], 0);
        System.out.println(ans);
    }
    
    static void check(int idx, boolean[] used, int value) {
        if (idx == 0) {
            if (value % k == 0) {
                ans++;
            }
            return;
        }
        for (int i = 1; i <= 8; i++) {
            if (used[i]) {
                continue;
            }
            used[i] = true;
            check(idx - 1, used, value * 10 + i);
            used[i] = false;
        }
    }
}
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