結果

問題 No.2593 Reorder and Mod 120
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-12-29 15:42:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,968 KB
最終ジャッジ日時 2024-09-27 16:13:10
合計ジャッジ時間 2,673 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
66,532 KB
testcase_01 AC 57 ms
67,036 KB
testcase_02 AC 58 ms
69,060 KB
testcase_03 AC 58 ms
68,068 KB
testcase_04 AC 56 ms
68,404 KB
testcase_05 AC 54 ms
65,980 KB
testcase_06 AC 56 ms
69,468 KB
testcase_07 AC 57 ms
67,524 KB
testcase_08 AC 58 ms
68,556 KB
testcase_09 AC 55 ms
66,420 KB
testcase_10 AC 57 ms
66,716 KB
testcase_11 AC 55 ms
67,184 KB
testcase_12 AC 60 ms
69,436 KB
testcase_13 AC 74 ms
76,856 KB
testcase_14 AC 62 ms
74,064 KB
testcase_15 AC 71 ms
76,760 KB
testcase_16 AC 58 ms
69,372 KB
testcase_17 AC 58 ms
72,388 KB
testcase_18 AC 58 ms
72,340 KB
testcase_19 AC 69 ms
76,612 KB
testcase_20 AC 70 ms
76,900 KB
testcase_21 AC 71 ms
76,624 KB
testcase_22 AC 68 ms
76,744 KB
testcase_23 AC 73 ms
76,712 KB
testcase_24 AC 69 ms
76,968 KB
testcase_25 AC 69 ms
76,596 KB
testcase_26 AC 70 ms
76,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter, defaultdict

N = int(input())
S = input()
ans = set()
C_S = Counter(S)
for i in range(1000):
    isOK = True
    d = defaultdict(int)
    for t in list(str(i).zfill(min(3, N))):
        d[t] += 1
    for k, v in d.items():
        if C_S[k] < v:
            isOK = False
    if isOK:
        ans.add(i % 40)
print(len(ans))
0