結果
問題 | No.2562 数字探しゲーム(緑以下コンver.) |
ユーザー | Nikkuniku029 |
提出日時 | 2023-12-02 16:10:42 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
(最新)
WA
(最初)
|
実行時間 | - |
コード長 | 496 bytes |
コンパイル時間 | 422 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 633,104 KB |
最終ジャッジ日時 | 2024-11-19 21:32:57 |
合計ジャッジ時間 | 23,730 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 260 ms
173,804 KB |
testcase_01 | MLE | - |
testcase_02 | WA | - |
testcase_03 | MLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | WA | - |
ソースコード
def solve(M, A): from itertools import permutations digit = [] for i in range(9): for _ in range(A[i]): digit.append(i + 1) P = list(permutations(digit)) for per in P: tmp = 0 for c in per: tmp *= 10 tmp += c if tmp % M == 0: return tmp ans = [] T = int(input()) for _ in range(T): M = int(input()) A = list(map(int, input().split())) ans.append(solve(M, A)) print(*ans, sep="\n")