結果

問題 No.1644 Eight Digits
ユーザー kimiyukikimiyuki
提出日時 2021-08-13 22:38:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,036 KB
最終ジャッジ日時 2024-10-03 20:34:13
合計ジャッジ時間 2,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
75,412 KB
testcase_01 AC 57 ms
75,588 KB
testcase_02 AC 53 ms
75,480 KB
testcase_03 AC 53 ms
75,656 KB
testcase_04 AC 53 ms
75,292 KB
testcase_05 AC 53 ms
75,368 KB
testcase_06 AC 54 ms
75,716 KB
testcase_07 AC 52 ms
75,628 KB
testcase_08 AC 51 ms
75,656 KB
testcase_09 AC 51 ms
76,036 KB
testcase_10 AC 53 ms
75,584 KB
testcase_11 AC 58 ms
75,704 KB
testcase_12 AC 56 ms
75,704 KB
testcase_13 AC 55 ms
75,684 KB
testcase_14 AC 54 ms
75,580 KB
testcase_15 AC 56 ms
75,436 KB
testcase_16 AC 51 ms
75,476 KB
testcase_17 AC 51 ms
75,304 KB
testcase_18 AC 50 ms
75,312 KB
testcase_19 AC 50 ms
75,416 KB
testcase_20 AC 50 ms
75,624 KB
testcase_21 AC 51 ms
75,680 KB
testcase_22 AC 51 ms
75,484 KB
testcase_23 AC 52 ms
75,792 KB
testcase_24 AC 50 ms
75,704 KB
testcase_25 AC 50 ms
75,480 KB
testcase_26 AC 51 ms
75,368 KB
testcase_27 AC 53 ms
75,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *
import itertools

def solve(k: int) -> int:
    cnt = 0
    for p in itertools.permutations('12345678'):
        if int(''.join(p)) % k == 0:
            cnt += 1
    return cnt




# generated by oj-template v4.8.0 (https://github.com/online-judge-tools/template-generator)
def main():
    K = int(input())
    a = solve(K)
    print(a)


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