結果
問題 | No.10 +か×か |
ユーザー | No |
提出日時 | 2017-08-26 03:36:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 450 bytes |
コンパイル時間 | 233 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-15 17:02:18 |
合計ジャッジ時間 | 6,890 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,752 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | AC | 25 ms
10,496 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
import itertools n = int(input()) t = int(input()) a = input().split() k = ('+', '*') for i in itertools.product(k, repeat = n - 1): t2 = int(a[0]) for j in range(0 , n - 1): if(i[j] == '+'): t2 += int(a[j + 1]) else: t2 *= int(a[j + 1]) if(t2 > t): break if(t2 == t): ans = "" for k in range(0 , n - 1): ans += i[k] print(ans) break