結果

問題 No.230 Splarraay スプラレェーイ
ユーザー カルロスカルロス
提出日時 2015-09-23 10:07:26
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,307 bytes
コンパイル時間 950 ms
コンパイル使用メモリ 21,632 KB
実行使用メモリ 8,736 KB
最終ジャッジ日時 2024-07-19 08:47:18
合計ジャッジ時間 9,721 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 700 ms
5,376 KB
testcase_10 AC 27 ms
5,376 KB
testcase_11 AC 225 ms
5,376 KB
testcase_12 AC 696 ms
5,376 KB
testcase_13 AC 20 ms
5,376 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d %d", &N, &Q);
      |     ^~~~~~~~~~~~~~~~~~~~~~
main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d %d %d", &x, &l, &r);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>



int main(void){
    int i, j, N, Q, x, l, r, c1, c2, score_1 = 0, score_2 = 0;
    int field[100000] = {0};
    scanf("%d %d", &N, &Q);
    for(i=0;i<Q;i++){
        scanf("%d %d %d", &x, &l, &r);
        if(x==0){
            c1 = 0, c2 = 0;
            for(j=l;j<=r;j++){
                if      (field[j]==1){
                    c1++;
                }else if(field[j]==2){
                    c2++;
                }
            }
            if      (c1>c2){
                score_1 += c1;
            }else if(c1<c2){
                score_2 += c2;
            }
        }else if(x==1){
            for(j=l;j<=r;j++){
                if      (field[j]==0){
                    field[j] = 1;
                    score_1++;
                }else if(field[j]==2){
                    field[j] = 1;
                    score_1++;
                    score_2--;
                }
            }
        }else{
            for(j=l;j<=r;j++){
                if      (field[j]==0){
                    field[j] = 2;
                    score_2++;
                }else if(field[j]==1){
                    field[j] = 2;
                    score_1--;
                    score_2++;
                }
            }
        }
    }
    printf("%d %d\n", score_1, score_2);
    return 0;
}
0