結果
問題 | No.29 パワーアップ |
ユーザー |
![]() |
提出日時 | 2017-06-26 20:30:27 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 465 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 23,040 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 09:48:21 |
合計ジャッジ時間 | 754 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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); }