結果
問題 | No.10 +か×か |
ユーザー | tktk_snsn |
提出日時 | 2021-10-26 23:20:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-10-06 06:07:09 |
合計ジャッジ時間 | 6,773 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,496 KB |
testcase_02 | AC | 30 ms
10,496 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
N = int(input()) T = int(input()) A = list(map(int, input().split())) ans = [] tmp = [] def dfs(i, val): if i == N: if val == T: ans.append("".join(tmp)) return if val + A[i] <= T: tmp.append("0") dfs(i + 1, val + A[i]) tmp.pop() if val * A[i] <= T: tmp.append("1") dfs(i + 1, val * A[i]) tmp.pop() dfs(1, A[0]) answer = sorted(ans)[0] print(answer.replace("0", "+").replace("1", "*"))