結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー tottoripapertottoripaper
提出日時 2015-03-05 01:12:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 683 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 42,036 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-06 13:24:52
合計ジャッジ時間 834 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <algorithm>

bool used[100];

int main(){
    int T;
    scanf("%d", &T);

    while(T--){
        int N;
        scanf("%d", &N);

        for(int i=0;i<N;i++){used[i] = false;}
    
        int L[100];
        for(int i=0;i<N;i++){
            scanf("%d", L+i);
        }

        std::sort(L, L+N);

        int res = 0;
        for(int i=1;i<=N/3;i++){
            bool can = true;
            for(int j=0,k=i,l=N-1;j<i;j++,k++,l--){
                while(k < N && L[k] <= L[j]){k++;}
                if(k == N || k >= l || L[k] >= L[l]){can = false; break;}
            }

            if(can){res = i;}
        }

        printf("%d\n", res);
    }
}
0