結果

問題 No.1644 Eight Digits
ユーザー dangodango
提出日時 2023-06-12 21:44:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 1,000 ms
コード長 115 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 87,200 KB
実行使用メモリ 77,360 KB
最終ジャッジ日時 2023-09-02 15:08:54
合計ジャッジ時間 4,174 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
77,356 KB
testcase_01 AC 86 ms
77,184 KB
testcase_02 AC 89 ms
77,148 KB
testcase_03 AC 86 ms
77,124 KB
testcase_04 AC 87 ms
77,356 KB
testcase_05 AC 88 ms
77,192 KB
testcase_06 AC 87 ms
77,228 KB
testcase_07 AC 90 ms
77,360 KB
testcase_08 AC 88 ms
77,192 KB
testcase_09 AC 87 ms
77,228 KB
testcase_10 AC 90 ms
76,892 KB
testcase_11 AC 89 ms
77,216 KB
testcase_12 AC 85 ms
77,204 KB
testcase_13 AC 87 ms
77,188 KB
testcase_14 AC 87 ms
77,116 KB
testcase_15 AC 88 ms
77,264 KB
testcase_16 AC 89 ms
77,212 KB
testcase_17 AC 88 ms
77,332 KB
testcase_18 AC 85 ms
77,204 KB
testcase_19 AC 85 ms
77,092 KB
testcase_20 AC 85 ms
77,192 KB
testcase_21 AC 86 ms
77,204 KB
testcase_22 AC 86 ms
77,304 KB
testcase_23 AC 91 ms
76,924 KB
testcase_24 AC 89 ms
76,924 KB
testcase_25 AC 88 ms
77,192 KB
testcase_26 AC 90 ms
77,096 KB
testcase_27 AC 88 ms
77,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())
print(sum(int(''.join(P)) % N == 0 for P in itertools.permutations('12345678')))
0