結果
問題 | No.10 +か×か |
ユーザー | La |
提出日時 | 2021-01-07 10:39:16 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 351 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 244,224 KB |
最終ジャッジ日時 | 2024-11-08 00:15:20 |
合計ジャッジ時間 | 7,246 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 104 ms
12,160 KB |
testcase_01 | AC | 79 ms
12,032 KB |
testcase_02 | AC | 79 ms
12,160 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
n=gets.to_i t=gets.to_i a=gets.split.map(&:to_i) dp=Array.new(n+1){Array.new(t+1,"!")} dp[1][a[0]]="" (1...n).each do |x| (0..t).each do |y| next if dp[x][y]=="!" dp[x+1][y+a[x]]=dp[x][y]+"+" if y+a[x]<=t && dp[x+1][y+a[x]]<dp[x][y]+"+" dp[x+1][y*a[x]]=dp[x][y]+"*" if y*a[x]<=t && dp[x+1][y*a[x]]<dp[x][y]+"*" end end puts dp[n][t]