結果

問題 No.2593 Reorder and Mod 120
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-12-29 15:38:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-09-27 16:11:15
合計ジャッジ時間 7,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
80,112 KB
testcase_01 AC 69 ms
70,536 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 65 ms
70,628 KB
testcase_06 WA -
testcase_07 AC 69 ms
71,444 KB
testcase_08 AC 59 ms
67,084 KB
testcase_09 AC 60 ms
67,516 KB
testcase_10 AC 63 ms
70,076 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
S = input()
ans = set()
C_S = Counter(S)
for i in range(1000):
    isOK = True
    tmp = Counter(S)
    for t in list(str(i).zfill(min(3, N))):
        if t in tmp:
            tmp[t] -= 1
        else:
            isOK = False
    for v in tmp.values():
        if v < 0:
            isOK = False
    if isOK:
        ans.add(i)
print(len(ans))
0