結果
問題 | No.2593 Reorder and Mod 120 |
ユーザー | rlangevin |
提出日時 | 2023-12-21 08:53:59 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 79 ms / 2,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 558 ms |
コンパイル使用メモリ | 82,504 KB |
実行使用メモリ | 76,704 KB |
最終ジャッジ日時 | 2024-09-27 10:48:14 |
合計ジャッジ時間 | 3,039 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 26 |
ソースコード
from collections import * N = int(input()) S = input() if N == 1: print(1) elif N == 2: print(len(set(S))) else: C = Counter(S) ans = [0] * 40 def check(C, i): temp = Counter(str(i)) for k, v in temp.items(): if v > C[k]: return 0 return 1 for i in range(111,1000): if check(C, i): ans[i%40] = 1 print(sum(ans))