結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,872 KB
testcase_01 WA -
testcase_02 AC 42 ms
53,696 KB
testcase_03 AC 44 ms
59,644 KB
testcase_04 AC 45 ms
60,780 KB
testcase_05 AC 42 ms
53,780 KB
testcase_06 AC 44 ms
59,380 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 53 ms
68,508 KB
testcase_12 AC 53 ms
69,576 KB
testcase_13 AC 65 ms
76,480 KB
testcase_14 AC 57 ms
74,268 KB
testcase_15 AC 63 ms
76,612 KB
testcase_16 AC 52 ms
71,072 KB
testcase_17 AC 56 ms
72,512 KB
testcase_18 AC 56 ms
72,524 KB
testcase_19 AC 63 ms
76,728 KB
testcase_20 AC 66 ms
76,536 KB
testcase_21 AC 64 ms
76,548 KB
testcase_22 AC 65 ms
76,560 KB
testcase_23 AC 66 ms
76,708 KB
testcase_24 AC 56 ms
74,172 KB
testcase_25 AC 54 ms
73,976 KB
testcase_26 AC 56 ms
73,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from itertools import permutations

dic = defaultdict(int)
N = int(input())
S = input()
sum0 = 0
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