結果
| 問題 | No.29 パワーアップ | 
| コンテスト | |
| ユーザー |  Bantako | 
| 提出日時 | 2017-06-26 20:30:27 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 465 bytes | 
| コンパイル時間 | 183 ms | 
| コンパイル使用メモリ | 29,964 KB | 
| 実行使用メモリ | 7,716 KB | 
| 最終ジャッジ日時 | 2025-10-24 21:02:06 | 
| 合計ジャッジ時間 | 860 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 22 | 
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    2 | main(){
      | ^~~~
main.cpp: In function ‘int main()’:
main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
main.cpp:12:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |             scanf("%d",&a);
      |             ~~~~~^~~~~~~~~
            
            ソースコード
#include<stdio.h>
main(){
    int N;
    int item[10];
    scanf("%d",&N);
    for(int i = 0;i < 10;i++){
        item[i] = 0;
    }
    for(int i = 0;i < N;i++){
        for(int j = 0;j < 3;j++){
            int a;
            scanf("%d",&a);
            item[a-1]++;
        }
    }
    int rest = 0;
    int lvup = 0;
    for(int i = 0;i < 10;i++){
        lvup += item[i] / 2;
        rest += item[i] % 2;
    }
    lvup += rest / 4;
    printf("%d\n",lvup);
}
            
            
            
        