結果

問題 No.1644 Eight Digits
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-13 21:37:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 1,000 ms
コード長 206 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 76,280 KB
最終ジャッジ日時 2024-10-03 17:48:17
合計ジャッジ時間 3,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
import itertools
X = list(range(1, 9))
X = [str(i) for i in X]
ans = 0
for p in itertools.permutations(X, 8):
    p = ''.join(p)
    p = int(p)
    if p%k == 0:
        ans += 1
print(ans)
0