結果

問題 No.733 分身並列コーディング
ユーザー weizenweizen
提出日時 2018-09-07 23:11:29
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 36,912 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 05:37:43
合計ジャッジ時間 1,492 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 0 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 0 ms
6,944 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 AC 0 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 0 ms
6,940 KB
testcase_11 AC 0 ms
6,940 KB
testcase_12 AC 0 ms
6,940 KB
testcase_13 AC 0 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 0 ms
6,944 KB
testcase_18 WA -
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 0 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 0 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d %d",&T,&N);
      |         ~~~~~^~~~~~~~~~~~~~~
main.cpp:10:41: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         for(int i = 0; i < N; i++) scanf("%d",t+i);
      |                                    ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <algorithm>

int T,N;
int t[17];

int main(){
        scanf("%d %d",&T,&N);
        for(int i = 0; i < N; i++) scanf("%d",t+i);

        std::sort(t,t+N);
        char used[17];
        memset(used,0,sizeof(used));
        int ans = 0;
        for(int e = N-1; e >= 0; e--){
                if(used[e]) break;
                used[e] = 1;
                ans++;
                for(int s = 0; s < N; s++){
                        if(!used[s] && t[e]+t[s] <= T){
                                t[e] += t[s];
                                used[s] = 1;
                        }
                }
        }
        printf("%d\n",ans);
}
0