結果

問題 No.1644 Eight Digits
ユーザー titan23titan23
提出日時 2022-07-03 04:35:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 263 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2024-11-28 12:29:23
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

k = int(input())
ans = 0
t = '12345678'
for p in permutations(t):
  m = int(''.join(map(str, p)))
  if m % k == 0:
    ans += 1
print(ans)
0