結果
| 問題 |
No.29 パワーアップ
|
| コンテスト | |
| ユーザー |
Bantako
|
| 提出日時 | 2017-06-26 20:27:57 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 463 bytes |
| コンパイル時間 | 152 ms |
| コンパイル使用メモリ | 29,580 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-10-24 21:02:02 |
| 合計ジャッジ時間 | 860 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 19 |
コンパイルメッセージ
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 < N;i++){
lvup += item[i] / 2;
rest += item[i] % 2;
}
lvup += rest / 4;
printf("%d\n",lvup);
}
Bantako