結果

問題 No.1644 Eight Digits
ユーザー ID 21712ID 21712
提出日時 2024-12-11 15:19:53
言語 Go
(1.22.1)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 310 bytes
コンパイル時間 10,435 ms
コンパイル使用メモリ 240,444 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-12-11 15:20:12
合計ジャッジ時間 13,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
6,016 KB
testcase_01 AC 57 ms
6,016 KB
testcase_02 AC 57 ms
6,016 KB
testcase_03 AC 56 ms
6,016 KB
testcase_04 AC 57 ms
6,016 KB
testcase_05 AC 53 ms
6,016 KB
testcase_06 AC 56 ms
6,016 KB
testcase_07 AC 56 ms
6,016 KB
testcase_08 AC 55 ms
6,016 KB
testcase_09 AC 55 ms
6,016 KB
testcase_10 AC 57 ms
6,144 KB
testcase_11 AC 56 ms
6,016 KB
testcase_12 AC 55 ms
6,016 KB
testcase_13 AC 54 ms
6,016 KB
testcase_14 AC 55 ms
6,016 KB
testcase_15 AC 53 ms
6,016 KB
testcase_16 AC 55 ms
6,016 KB
testcase_17 AC 55 ms
6,016 KB
testcase_18 AC 58 ms
6,016 KB
testcase_19 AC 60 ms
6,016 KB
testcase_20 AC 55 ms
6,016 KB
testcase_21 AC 55 ms
6,016 KB
testcase_22 AC 56 ms
6,016 KB
testcase_23 AC 56 ms
6,144 KB
testcase_24 AC 56 ms
6,144 KB
testcase_25 AC 56 ms
6,016 KB
testcase_26 AC 54 ms
6,016 KB
testcase_27 AC 55 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

var k,ans int

var f[9]bool

func count(d int, s string) {
	if d==0 {
		Sscan(s,&d)
		if d%k==0 {
			ans++
		}
		return
	}
	for i:=1;i<=8;i++ {
		if f[i] {
			continue
		}
		f[i]=true
		count(d-1,Sprint(s,i))
		f[i]=false
	}
}

func main() {
	Scan(&k)
	count(8,"")
	Println(ans)
}
0