結果

問題 No.10 +か×か
ユーザー KudeKude
提出日時 2020-09-03 08:40:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 358 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 128,128 KB
最終ジャッジ日時 2024-11-22 19:24:17
合計ジャッジ時間 23,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,472 KB
testcase_01 WA -
testcase_02 AC 39 ms
51,968 KB
testcase_03 TLE -
testcase_04 WA -
testcase_05 AC 41 ms
51,968 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 WA -
testcase_09 AC 328 ms
75,776 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 40 ms
127,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n = int(input())
tot = int(input())
a = list(map(int, input().split()))
for p in product(range(2), repeat=n-1):
    cur = a[0]
    for i in range(n - 1):
        if p[i]:
            cur += a[i + 1]
        else:
            cur *= a[i + 1]
    if cur == tot:
        print(''.join('+' if op else '*' for op in p))
        break
0