結果

問題 No.1644 Eight Digits
ユーザー kept1994kept1994
提出日時 2021-09-20 00:55:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 311 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 76,000 KB
最終ジャッジ日時 2024-07-02 05:27:52
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
75,652 KB
testcase_01 AC 59 ms
75,712 KB
testcase_02 AC 58 ms
75,912 KB
testcase_03 AC 57 ms
75,824 KB
testcase_04 AC 58 ms
75,388 KB
testcase_05 AC 58 ms
75,432 KB
testcase_06 AC 58 ms
75,420 KB
testcase_07 AC 57 ms
75,564 KB
testcase_08 AC 59 ms
75,444 KB
testcase_09 AC 58 ms
75,632 KB
testcase_10 AC 58 ms
75,716 KB
testcase_11 AC 57 ms
75,624 KB
testcase_12 AC 59 ms
75,488 KB
testcase_13 AC 58 ms
76,000 KB
testcase_14 AC 59 ms
75,832 KB
testcase_15 AC 59 ms
75,636 KB
testcase_16 AC 57 ms
75,376 KB
testcase_17 AC 57 ms
75,792 KB
testcase_18 AC 58 ms
75,432 KB
testcase_19 AC 58 ms
75,780 KB
testcase_20 AC 58 ms
75,660 KB
testcase_21 AC 57 ms
75,772 KB
testcase_22 AC 58 ms
75,760 KB
testcase_23 AC 58 ms
75,940 KB
testcase_24 AC 58 ms
75,444 KB
testcase_25 AC 59 ms
75,720 KB
testcase_26 AC 58 ms
75,496 KB
testcase_27 AC 57 ms
75,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
from itertools import permutations

def main():
    K = int(input())
    l = [str(i) for i in range(1, 9)]
    ans = 0
    for i in permutations(l):
        if int("".join(i)) % K == 0:
            ans += 1
    print(ans)
        
        
if __name__ == '__main__':
    main()
0