結果

問題 No.1644 Eight Digits
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-08-13 21:27:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 221 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 68,864 KB
最終ジャッジ日時 2024-10-03 17:08:12
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
68,224 KB
testcase_01 AC 51 ms
67,072 KB
testcase_02 AC 52 ms
67,456 KB
testcase_03 AC 52 ms
68,608 KB
testcase_04 AC 58 ms
68,352 KB
testcase_05 AC 54 ms
68,224 KB
testcase_06 AC 55 ms
68,480 KB
testcase_07 AC 54 ms
67,840 KB
testcase_08 AC 53 ms
68,224 KB
testcase_09 AC 54 ms
68,224 KB
testcase_10 AC 55 ms
68,224 KB
testcase_11 AC 53 ms
68,352 KB
testcase_12 AC 53 ms
68,224 KB
testcase_13 AC 54 ms
68,480 KB
testcase_14 AC 55 ms
68,352 KB
testcase_15 AC 54 ms
68,224 KB
testcase_16 AC 55 ms
68,864 KB
testcase_17 AC 55 ms
68,480 KB
testcase_18 AC 54 ms
68,224 KB
testcase_19 AC 53 ms
68,480 KB
testcase_20 AC 55 ms
68,480 KB
testcase_21 AC 54 ms
68,864 KB
testcase_22 AC 54 ms
68,352 KB
testcase_23 AC 54 ms
67,712 KB
testcase_24 AC 53 ms
67,200 KB
testcase_25 AC 55 ms
67,840 KB
testcase_26 AC 52 ms
67,200 KB
testcase_27 AC 54 ms
67,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

k = int(input())

s = list(range(1,9))
lis = list(itertools.permutations(s))

ans = 0

for x in lis:
    d = 0
    for y in x:
        d *= 10
        d += y
    if d%k == 0:
        ans += 1
print(ans)
0