結果

問題 No.1644 Eight Digits
ユーザー ks2mks2m
提出日時 2021-08-13 21:26:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 1,000 ms
コード長 585 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 46,796 KB
最終ジャッジ日時 2024-10-03 17:04:36
合計ジャッジ時間 9,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
46,580 KB
testcase_01 AC 211 ms
46,520 KB
testcase_02 AC 211 ms
46,212 KB
testcase_03 AC 212 ms
46,600 KB
testcase_04 AC 223 ms
46,488 KB
testcase_05 AC 192 ms
46,704 KB
testcase_06 AC 228 ms
46,652 KB
testcase_07 AC 206 ms
46,608 KB
testcase_08 AC 211 ms
46,644 KB
testcase_09 AC 207 ms
46,700 KB
testcase_10 AC 233 ms
46,580 KB
testcase_11 AC 221 ms
46,652 KB
testcase_12 AC 206 ms
46,796 KB
testcase_13 AC 193 ms
46,180 KB
testcase_14 AC 215 ms
46,468 KB
testcase_15 AC 226 ms
46,628 KB
testcase_16 AC 209 ms
46,572 KB
testcase_17 AC 221 ms
46,520 KB
testcase_18 AC 225 ms
46,220 KB
testcase_19 AC 193 ms
46,208 KB
testcase_20 AC 205 ms
46,672 KB
testcase_21 AC 221 ms
46,660 KB
testcase_22 AC 228 ms
46,452 KB
testcase_23 AC 212 ms
46,688 KB
testcase_24 AC 205 ms
46,504 KB
testcase_25 AC 205 ms
46,748 KB
testcase_26 AC 206 ms
46,396 KB
testcase_27 AC 202 ms
46,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedHashSet;
import java.util.Scanner;

public class Main {
	static int k, ans;

	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		k = sc.nextInt();
		sc.close();

		permutation(0, new LinkedHashSet<>());
		System.out.println(ans);
	}

	static void permutation(int x, LinkedHashSet<Integer> set) {
		if (x > 10000000) {
			if (x % k == 0) {
				ans++;
			}
			return;
		}

		for (int i = 1; i <= 8; i++) {
			if (!set.contains(i)) {
				set.add(i);
				permutation(x * 10 + i, set);
				set.remove(i);
			}
		}
	}
}
0