結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー MaxMellonMaxMellon
提出日時 2014-12-11 23:59:26
言語 C90
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 791 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 21,120 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-11 20:49:46
合計ジャッジ時間 2,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 RE -
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 0 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 0 ms
5,376 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |    #define SCAN scanf
      |                 ^
main.c:24:6: note: in expansion of macro ‘SCAN’
   24 |      SCAN(GETINT &data_num);
      |      ^~~~
main.c:8:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |    #define SCAN scanf
      |                 ^
main.c:27:8: note: in expansion of macro ‘SCAN’
   27 |        SCAN(GETINT &arr[i]);
      |        ^~~~

ソースコード

diff #

   #define MAX 1000
   #define TYPE_NUM 7
   #define BEGEIN {
   #define END }
   #define FOR for (
   #define IF if (
   #define DO ) {
   #define SCAN scanf
   #define INT int
   #define GETINT "%d",
   #define PRINT printf
   #define OUTINT "%d\n",
   #define EXIT return 0;

   #include <stdio.h>

   int main(int argc, char *argv[])
   BEGEIN

     INT i, max, data_num;
     INT arr[MAX];
     INT bin[TYPE_NUM] = {0};

     SCAN(GETINT &data_num);

     FOR i = 0; i < data_num; i++ DO
       SCAN(GETINT &arr[i]);
     END

     FOR i = 0; i < data_num; i++ DO
       bin[arr[i]]++;
     END

     max = 0;
     FOR i = 1; i < TYPE_NUM; i++ DO
       IF bin[max] <= bin[i] DO max = i; END
     END

     PRINT(OUTINT max);

     EXIT
   END
0