結果
問題 | No.2593 Reorder and Mod 120 |
ユーザー | 👑 rin204 |
提出日時 | 2023-12-21 20:40:21 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 59 ms / 2,000 ms |
コード長 | 1,927 bytes |
コンパイル時間 | 292 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 82,704 KB |
最終ジャッジ日時 | 2024-09-27 11:05:16 |
合計ジャッジ時間 | 2,652 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,748 KB |
testcase_01 | AC | 35 ms
52,456 KB |
testcase_02 | AC | 36 ms
53,672 KB |
testcase_03 | AC | 36 ms
52,892 KB |
testcase_04 | AC | 39 ms
52,900 KB |
testcase_05 | AC | 36 ms
52,576 KB |
testcase_06 | AC | 37 ms
53,196 KB |
testcase_07 | AC | 36 ms
53,136 KB |
testcase_08 | AC | 40 ms
52,148 KB |
testcase_09 | AC | 36 ms
52,404 KB |
testcase_10 | AC | 36 ms
53,988 KB |
testcase_11 | AC | 40 ms
60,420 KB |
testcase_12 | AC | 42 ms
62,676 KB |
testcase_13 | AC | 54 ms
79,368 KB |
testcase_14 | AC | 49 ms
68,440 KB |
testcase_15 | AC | 52 ms
76,052 KB |
testcase_16 | AC | 44 ms
62,300 KB |
testcase_17 | AC | 50 ms
65,672 KB |
testcase_18 | AC | 46 ms
66,388 KB |
testcase_19 | AC | 54 ms
79,508 KB |
testcase_20 | AC | 58 ms
81,592 KB |
testcase_21 | AC | 59 ms
82,704 KB |
testcase_22 | AC | 53 ms
82,368 KB |
testcase_23 | AC | 55 ms
81,524 KB |
testcase_24 | AC | 54 ms
81,096 KB |
testcase_25 | AC | 55 ms
80,924 KB |
testcase_26 | AC | 55 ms
81,384 KB |
ソースコード
def next_permutation(P): n = len(P) for i in range(n - 2, -1, -1): if P[i] < P[i + 1]: l = i + 1 r = n - 1 while r > l: P[l], P[r] = P[r], P[l] l += 1 r -= 1 for j in range(i + 1, n): if P[i] < P[j]: P[i], P[j] = P[j], P[i] return True return False def all_permutations(P): # 全列挙したい場合はソートしてある状態で渡す yield P while next_permutation(P): yield P def prev_permutation(P): n = len(P) for i in range(n - 2, -1, -1): if P[i] > P[i + 1]: l = i + 1 r = n - 1 while r > l: P[l], P[r] = P[r], P[l] l += 1 r -= 1 for j in range(i + 1, n): if P[i] > P[j]: P[i], P[j] = P[j], P[i] return True return False def rev_all_permutations(P): # 全列挙したい場合は逆順ソートしてある状態で渡す yield P while prev_permutation(P): yield P n = int(input()) S = list(map(int, input())) if n <= 3: tf = [False] * 120 S.sort() for P in all_permutations(S): tot = 0 for p in P: tot = tot * 10 + p tf[tot % 120] = True print(sum(tf)) else: cnt = [0] * 10 for s in S: cnt[s] += 1 tf = [False] * 40 for i in range(1, 10): if cnt[i] == 0: continue cnt[i] -= 1 for j in range(1, 10): if cnt[j] == 0: continue cnt[j] -= 1 for k in range(1, 10): if cnt[k] == 0: continue x = i * 100 + j * 10 + k tf[x % 40] = True cnt[j] += 1 cnt[i] += 1 print(sum(tf))