結果

問題 No.1644 Eight Digits
ユーザー rlangevinrlangevin
提出日時 2024-12-09 08:55:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 194 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 67,524 KB
最終ジャッジ日時 2024-12-09 08:55:47
合計ジャッジ時間 3,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
66,176 KB
testcase_01 AC 49 ms
65,780 KB
testcase_02 AC 50 ms
65,292 KB
testcase_03 AC 51 ms
67,204 KB
testcase_04 AC 50 ms
66,076 KB
testcase_05 AC 50 ms
66,392 KB
testcase_06 AC 51 ms
65,996 KB
testcase_07 AC 50 ms
65,240 KB
testcase_08 AC 49 ms
67,072 KB
testcase_09 AC 50 ms
66,120 KB
testcase_10 AC 48 ms
66,604 KB
testcase_11 AC 47 ms
66,644 KB
testcase_12 AC 48 ms
65,992 KB
testcase_13 AC 49 ms
67,524 KB
testcase_14 AC 50 ms
66,136 KB
testcase_15 AC 50 ms
66,920 KB
testcase_16 AC 49 ms
66,816 KB
testcase_17 AC 47 ms
66,916 KB
testcase_18 AC 50 ms
65,900 KB
testcase_19 AC 48 ms
66,680 KB
testcase_20 AC 50 ms
67,440 KB
testcase_21 AC 50 ms
65,668 KB
testcase_22 AC 52 ms
67,076 KB
testcase_23 AC 49 ms
66,356 KB
testcase_24 AC 49 ms
66,516 KB
testcase_25 AC 50 ms
65,720 KB
testcase_26 AC 48 ms
65,600 KB
testcase_27 AC 48 ms
65,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *

K = int(input())
ans = 0
for t in permutations(range(1, 9)):
    a = 0
    for i in range(8):
        a = a * 10 + t[i]
    if a % K == 0:
        ans += 1
  
print(ans)
0