結果

問題 No.2593 Reorder and Mod 120
ユーザー ntudantuda
提出日時 2023-12-23 11:59:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 76,840 KB
最終ジャッジ日時 2024-09-27 12:20:42
合計ジャッジ時間 2,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,728 KB
testcase_01 AC 43 ms
54,236 KB
testcase_02 AC 42 ms
54,256 KB
testcase_03 AC 43 ms
59,520 KB
testcase_04 AC 44 ms
58,900 KB
testcase_05 AC 45 ms
55,120 KB
testcase_06 AC 44 ms
59,816 KB
testcase_07 AC 42 ms
54,264 KB
testcase_08 AC 41 ms
54,936 KB
testcase_09 AC 42 ms
54,304 KB
testcase_10 AC 43 ms
54,208 KB
testcase_11 AC 52 ms
68,692 KB
testcase_12 AC 53 ms
71,192 KB
testcase_13 AC 65 ms
76,792 KB
testcase_14 AC 56 ms
74,736 KB
testcase_15 AC 62 ms
76,664 KB
testcase_16 AC 55 ms
70,920 KB
testcase_17 AC 56 ms
72,564 KB
testcase_18 AC 56 ms
72,592 KB
testcase_19 AC 63 ms
76,584 KB
testcase_20 AC 68 ms
76,792 KB
testcase_21 AC 66 ms
76,840 KB
testcase_22 AC 67 ms
76,696 KB
testcase_23 AC 66 ms
76,768 KB
testcase_24 AC 56 ms
74,316 KB
testcase_25 AC 55 ms
73,896 KB
testcase_26 AC 58 ms
74,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from itertools import permutations

N = int(input())
S = input()

if N == 1:
    print(1)
    exit()
if N == 2:
    if S[0] == S[1]:
        print(1)
    else:
        print(2)
    exit()

sum0 = 0
dic = defaultdict(int)
for s in S:
    s = int(s)
    dic[s] += 1
    sum0 += s
X = []
for k, v in dic.items():
    X += [k] * (min(3, v))

Y = set()
for a, b, c in set(permutations(X, 3)):
    y = a * 100 + b * 10 + c + 40 * ((sum0 - a - b - c) % 3)
    y %= 120
    Y.add(y)

print(len(Y))
0