結果

問題 No.647 明太子
ユーザー るさるさ
提出日時 2018-05-30 18:13:44
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 39 ms / 4,500 ms
コード長 984 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 24,320 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 08:19:50
合計ジャッジ時間 1,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 0 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 0 ms
6,944 KB
testcase_06 AC 0 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 28 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 36 ms
6,940 KB
testcase_18 AC 39 ms
6,944 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 15 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
main.cpp:8:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |             scanf("%d",&mb[i][j]);
      |             ~~~~~^~~~~~~~~~~~~~~~
main.cpp:12:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |     scanf("%d",&m);
      |     ~~~~~^~~~~~~~~
main.cpp:16:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |             scanf("%d",&da[i][j]);
      |             ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
int main(void){
    int n;
    scanf("%d",&n);
    int mb[n][2];
    for(int i=0;i<n;i++){
        for(int j=0;j<2;j++){
            scanf("%d",&mb[i][j]);
        }
    }
    int m;
    scanf("%d",&m);
    int da[m][2];
    for(int i=0;i<m;i++){
        for(int j=0;j<2;j++){
            scanf("%d",&da[i][j]);
        }
    }
    int bcnt[m];
    for(int i=0;i<m;i++){
        bcnt[i]=0;
    }
    int isbought=0;
    for(int i=0;i<n;i++){
        for(int j=0;j<m;j++){
            if((mb[i][0]>=da[j][0])and(mb[i][1]<=da[j][1])){
                isbought=1;
                bcnt[j]++;
            }
        }
    }
    if(isbought==1){
        int max=0;
        for(int i=0;i<m;i++){
            if(max<bcnt[i]){
                max=bcnt[i];
            }
        }
        for(int i=0;i<m;i++){
            if(bcnt[i]==max){
                printf("%d",i+1);
                printf("%s","\n");
            }
        }
    }else{
        printf("%d",0);
    }
}
0