結果

問題 No.2593 Reorder and Mod 120
ユーザー chineristACchineristAC
提出日時 2023-12-21 10:41:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,208 bytes
コンパイル時間 1,505 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 75,460 KB
最終ジャッジ日時 2024-09-27 10:54:54
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,148 KB
testcase_01 AC 44 ms
57,976 KB
testcase_02 AC 55 ms
66,528 KB
testcase_03 AC 52 ms
65,732 KB
testcase_04 AC 52 ms
65,948 KB
testcase_05 AC 42 ms
56,544 KB
testcase_06 AC 51 ms
65,948 KB
testcase_07 AC 43 ms
56,892 KB
testcase_08 AC 41 ms
56,476 KB
testcase_09 AC 42 ms
55,936 KB
testcase_10 AC 43 ms
56,136 KB
testcase_11 AC 53 ms
66,624 KB
testcase_12 AC 54 ms
67,216 KB
testcase_13 AC 56 ms
74,336 KB
testcase_14 AC 54 ms
69,108 KB
testcase_15 AC 57 ms
71,156 KB
testcase_16 AC 53 ms
67,084 KB
testcase_17 AC 54 ms
68,728 KB
testcase_18 AC 53 ms
69,084 KB
testcase_19 AC 55 ms
72,572 KB
testcase_20 AC 54 ms
73,984 KB
testcase_21 AC 57 ms
75,360 KB
testcase_22 AC 55 ms
74,240 KB
testcase_23 AC 55 ms
73,580 KB
testcase_24 AC 58 ms
74,552 KB
testcase_25 AC 57 ms
75,460 KB
testcase_26 AC 56 ms
74,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def solve_brute(N,S):
    L = permutations([i for i in range(N)])
    res = set()
    for p in L:
        tmp = int("".join([S[p[i]] for i in range(N)]))
        res.add(tmp % 120)
    return len(res)

def solve(N,S):
    if N <= 4:
        L = permutations([i for i in range(N)])
        res = set()
        for p in L:
            tmp = int("".join([S[p[i]] for i in range(N)]))
            res.add(tmp % 120)
        return len(res)


    cnt = [0] * 10
    for s in S:
        cnt[int(s)] += 1


    res = set()
    for r in range(100,1000):
        d = []
        for _ in range(3):
            d.append(r % 10)
            r //= 10
        if 0 in d:
            continue

        flg = 1
        for x in range(1,10):
            if d.count(x) > cnt[x]:
                flg = 0
        if flg:
            r = 100 * d[2] + 10 * d[1] + d[0]
            res.add(r % 40)
    return len(res)

N = int(input())
S = input()
print(solve(N,S))
                
0