結果

問題 No.1644 Eight Digits
ユーザー OR6107OR6107
提出日時 2021-08-13 21:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 314 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 82,948 KB
最終ジャッジ日時 2024-10-03 17:23:31
合計ジャッジ時間 3,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
82,432 KB
testcase_01 AC 79 ms
82,176 KB
testcase_02 AC 79 ms
82,432 KB
testcase_03 AC 78 ms
82,432 KB
testcase_04 AC 79 ms
82,432 KB
testcase_05 AC 78 ms
82,632 KB
testcase_06 AC 78 ms
82,892 KB
testcase_07 AC 79 ms
82,396 KB
testcase_08 AC 78 ms
82,320 KB
testcase_09 AC 78 ms
82,948 KB
testcase_10 AC 80 ms
82,424 KB
testcase_11 AC 79 ms
82,816 KB
testcase_12 AC 80 ms
82,420 KB
testcase_13 AC 80 ms
82,328 KB
testcase_14 AC 80 ms
82,688 KB
testcase_15 AC 80 ms
82,368 KB
testcase_16 AC 81 ms
82,432 KB
testcase_17 AC 82 ms
82,688 KB
testcase_18 AC 81 ms
82,356 KB
testcase_19 AC 82 ms
82,816 KB
testcase_20 AC 82 ms
82,432 KB
testcase_21 AC 80 ms
82,432 KB
testcase_22 AC 80 ms
82,356 KB
testcase_23 AC 79 ms
82,816 KB
testcase_24 AC 79 ms
82,432 KB
testcase_25 AC 79 ms
82,480 KB
testcase_26 AC 80 ms
82,344 KB
testcase_27 AC 79 ms
82,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
list = list(itertools.permutations(range(1,9)))
numbers = []
for i in range(len(list)):
  number = ""
  for j in range(len(list[i])):
    number += str(list[i][j])
  numbers.append(int(number))
k = int(input())
ans = 0
for i in range(len(numbers)):
  if numbers[i] % k == 0:
    ans+=1
print(ans)
0