結果
問題 | No.10 +か×か |
ユーザー | ayaoni |
提出日時 | 2020-12-04 10:13:56 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 310 ms / 5,000 ms |
コード長 | 1,175 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 143,872 KB |
最終ジャッジ日時 | 2024-12-14 15:46:58 |
合計ジャッジ時間 | 2,379 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
52,352 KB |
testcase_01 | AC | 40 ms
52,736 KB |
testcase_02 | AC | 41 ms
52,224 KB |
testcase_03 | AC | 310 ms
143,872 KB |
testcase_04 | AC | 239 ms
117,120 KB |
testcase_05 | AC | 40 ms
52,480 KB |
testcase_06 | AC | 302 ms
143,744 KB |
testcase_07 | AC | 237 ms
115,584 KB |
testcase_08 | AC | 102 ms
79,044 KB |
testcase_09 | AC | 139 ms
91,520 KB |
testcase_10 | AC | 54 ms
62,976 KB |
testcase_11 | AC | 50 ms
61,440 KB |
ソースコード
import sys sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) N = I() total = I() A = LI() dp0 = [[0]*(total+1) for _ in range(N)] dp0[0][A[0]] = 1 for i in range(1,N): a = A[i] for j in range(1,total+1): if j >= a: dp0[i][j] |= dp0[i-1][j-a] if j % a == 0: dp0[i][j] |= dp0[i-1][j//a] dp1 = [[0]*(total+1) for _ in range(N)] dp1[-1][-1] = 1 for i in range(N-2,-1,-1): a = A[i+1] for j in range(1,total+1): if j+a <= total and dp1[i+1][j+a]: dp1[i][j] = 1 elif j*a <= total and dp1[i+1][j*a]: dp1[i][j] = 1 ans = '' x = A[0] for i in range(1,N): a = A[i] if x+a <= total and dp1[i][x+a]: ans += '+' x += a else: ans += '*' x *= a print(ans)