結果

問題 No.2593 Reorder and Mod 120
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-01-04 14:15:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 76,864 KB
最終ジャッジ日時 2024-09-27 18:45:10
合計ジャッジ時間 2,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,584 KB
testcase_01 AC 38 ms
53,408 KB
testcase_02 AC 51 ms
63,572 KB
testcase_03 AC 48 ms
62,048 KB
testcase_04 AC 48 ms
63,280 KB
testcase_05 AC 39 ms
52,392 KB
testcase_06 AC 49 ms
62,076 KB
testcase_07 AC 39 ms
52,332 KB
testcase_08 AC 39 ms
52,328 KB
testcase_09 AC 39 ms
52,132 KB
testcase_10 AC 39 ms
53,272 KB
testcase_11 AC 51 ms
62,840 KB
testcase_12 AC 53 ms
65,124 KB
testcase_13 AC 58 ms
74,820 KB
testcase_14 AC 54 ms
67,556 KB
testcase_15 AC 56 ms
72,748 KB
testcase_16 AC 52 ms
63,728 KB
testcase_17 AC 53 ms
66,764 KB
testcase_18 AC 53 ms
67,380 KB
testcase_19 AC 58 ms
74,464 KB
testcase_20 AC 62 ms
76,864 KB
testcase_21 AC 62 ms
76,528 KB
testcase_22 AC 61 ms
76,256 KB
testcase_23 AC 62 ms
76,560 KB
testcase_24 AC 54 ms
64,320 KB
testcase_25 AC 56 ms
63,532 KB
testcase_26 AC 55 ms
63,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
N = int(input())
s = input()

if N <= 5:
    ans = set()
    for p in permutations(s):
        ans.add(int(''.join(p)) % 120)
    print(len(ans))
    exit()
cnt = [0] * 10
for c in s:
    cnt[int(c)] += 1

ok = [False] * 40
for n in range(1000):
    cnt_n = [0] * 10
    tmp = n
    for _ in range(min(N, 3)):
        cnt_n[tmp % 10] += 1
        tmp //= 10

    ok_n = True
    for i in range(10):
        if cnt_n[i] > cnt[i]:
            ok_n = False
            break
    if ok_n:
        ok[n % 40] = True

print(sum(ok))
0