結果

問題 No.1644 Eight Digits
ユーザー 👑 KazunKazun
提出日時 2021-08-13 21:23:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 224 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 75,784 KB
最終ジャッジ日時 2024-10-03 16:52:21
合計ジャッジ時間 2,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
75,400 KB
testcase_01 AC 52 ms
75,292 KB
testcase_02 AC 52 ms
75,164 KB
testcase_03 AC 52 ms
75,212 KB
testcase_04 AC 55 ms
75,560 KB
testcase_05 AC 54 ms
75,716 KB
testcase_06 AC 55 ms
75,540 KB
testcase_07 AC 52 ms
75,728 KB
testcase_08 AC 51 ms
75,184 KB
testcase_09 AC 52 ms
75,784 KB
testcase_10 AC 51 ms
75,356 KB
testcase_11 AC 52 ms
75,528 KB
testcase_12 AC 51 ms
75,668 KB
testcase_13 AC 49 ms
75,568 KB
testcase_14 AC 51 ms
75,376 KB
testcase_15 AC 55 ms
75,384 KB
testcase_16 AC 53 ms
75,380 KB
testcase_17 AC 54 ms
75,260 KB
testcase_18 AC 50 ms
75,412 KB
testcase_19 AC 52 ms
75,584 KB
testcase_20 AC 51 ms
75,472 KB
testcase_21 AC 52 ms
75,636 KB
testcase_22 AC 52 ms
75,396 KB
testcase_23 AC 53 ms
75,304 KB
testcase_24 AC 50 ms
75,700 KB
testcase_25 AC 52 ms
75,412 KB
testcase_26 AC 49 ms
75,228 KB
testcase_27 AC 50 ms
75,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

def f(p):
    X=0
    b=1
    for x in p:
        X+=b*x
        b*=10
    return X

K=int(input())
X=0

for p in permutations([1,2,3,4,5,6,7,8]):
    if f(p)%K==0:
        X+=1

print(X)
0