結果

問題 No.1644 Eight Digits
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-17 18:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 129 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 76,232 KB
最終ジャッジ日時 2024-08-17 18:20:36
合計ジャッジ時間 3,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
76,232 KB
testcase_01 AC 55 ms
75,696 KB
testcase_02 AC 54 ms
75,784 KB
testcase_03 AC 54 ms
76,052 KB
testcase_04 AC 55 ms
76,064 KB
testcase_05 AC 57 ms
75,924 KB
testcase_06 AC 55 ms
75,936 KB
testcase_07 AC 53 ms
76,120 KB
testcase_08 AC 52 ms
75,768 KB
testcase_09 AC 55 ms
76,084 KB
testcase_10 AC 55 ms
76,120 KB
testcase_11 AC 53 ms
76,080 KB
testcase_12 AC 54 ms
75,988 KB
testcase_13 AC 54 ms
75,912 KB
testcase_14 AC 56 ms
75,844 KB
testcase_15 AC 55 ms
76,088 KB
testcase_16 AC 55 ms
76,000 KB
testcase_17 AC 56 ms
75,996 KB
testcase_18 AC 56 ms
75,828 KB
testcase_19 AC 52 ms
75,964 KB
testcase_20 AC 54 ms
76,144 KB
testcase_21 AC 59 ms
76,232 KB
testcase_22 AC 54 ms
76,112 KB
testcase_23 AC 54 ms
75,756 KB
testcase_24 AC 52 ms
76,008 KB
testcase_25 AC 53 ms
75,868 KB
testcase_26 AC 56 ms
75,756 KB
testcase_27 AC 52 ms
75,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input())
c=0
from itertools import permutations
for p in permutations(list("12345678")):
  c+=int("".join(p))%k==0
print(c)
0