結果

問題 No.1644 Eight Digits
ユーザー ygd.ygd.
提出日時 2021-08-13 21:25:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 299 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 75,792 KB
最終ジャッジ日時 2024-10-03 16:59:35
合計ジャッジ時間 2,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
75,648 KB
testcase_01 AC 50 ms
75,504 KB
testcase_02 AC 49 ms
75,520 KB
testcase_03 AC 51 ms
75,480 KB
testcase_04 AC 51 ms
75,428 KB
testcase_05 AC 50 ms
75,648 KB
testcase_06 AC 51 ms
75,416 KB
testcase_07 AC 52 ms
75,588 KB
testcase_08 AC 49 ms
75,320 KB
testcase_09 AC 49 ms
75,392 KB
testcase_10 AC 49 ms
75,584 KB
testcase_11 AC 49 ms
75,516 KB
testcase_12 AC 50 ms
75,640 KB
testcase_13 AC 50 ms
75,568 KB
testcase_14 AC 56 ms
75,296 KB
testcase_15 AC 53 ms
75,448 KB
testcase_16 AC 53 ms
75,392 KB
testcase_17 AC 51 ms
75,508 KB
testcase_18 AC 49 ms
75,776 KB
testcase_19 AC 50 ms
75,424 KB
testcase_20 AC 50 ms
75,520 KB
testcase_21 AC 51 ms
75,792 KB
testcase_22 AC 50 ms
75,708 KB
testcase_23 AC 52 ms
75,516 KB
testcase_24 AC 50 ms
75,648 KB
testcase_25 AC 52 ms
75,584 KB
testcase_26 AC 51 ms
75,612 KB
testcase_27 AC 52 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

def main():
    N = "12345678"
    N = [a for a in N]
    #print(N)
    K = int(input())

    L = itertools.permutations(N,8)
    ans = 0
    for x in L:
        v = int("".join(x))
        if v % K == 0:
            ans += 1
    print(ans)



if __name__ == '__main__':
    main()
0