結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー |
|
提出日時 | 2017-12-18 10:59:02 |
言語 | Bash (Bash 5.2.21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 340 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 7,076 KB |
実行使用メモリ | 17,224 KB |
最終ジャッジ日時 | 2024-12-15 23:40:52 |
合計ジャッジ時間 | 37,300 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 TLE * 12 |
ソースコード
read n ka=()for ((i=0; i<$n; i++))doread a[i]doneans=0for ((mask=0; mask<$((1<<n)); mask++))dotmp=0for ((i=0; i<$n; i++))doif [ $((mask & (1<<i))) != 0 ]; thentmp=$((tmp+a[i]))fidoneif [ $(((tmp <= k) && (ans < tmp))) == 1 ]; thenans=$tmpfidoneecho $ans