結果
問題 | No.29 パワーアップ |
ユーザー | yn |
提出日時 | 2014-11-25 18:42:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 571 bytes |
コンパイル時間 | 355 ms |
コンパイル使用メモリ | 24,192 KB |
実行使用メモリ | 30,848 KB |
最終ジャッジ日時 | 2024-06-11 00:16:21 |
合計ジャッジ時間 | 12,698 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d",&N); | ~~~~~^~~~~~~~~ main.cpp:22:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:18:22: warning: iteration 11 invokes undefined behavior [-Waggressive-loop-optimizations] 18 | up[i]=0; | ~~~~~^~ main.cpp:16:18: note: within this loop 16 | for(i=0;i<=11;i++){ | ~^~~~ main.cpp:42:29: warning: iteration 10 invokes undefined behavior [-Waggressive-loop-optimizations] 42 | pup=pup+up[i]/2; | ~~~~^ main.cpp:41:18: note: within this loop 41 | for(i=1;i<=11;i++){ | ~^~~~ main.cpp:43:19: warning: ‘sp’ may be used uninitialized in this function [-Wmaybe-uninitialized] 43 | sp=sp+up[i]%2; | ~~^~~~~~~~~~~ main.cpp:18:22: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ writing 48 bytes into a region of size 44 overflows the destination [-Wstringop-overflow=] 18 | up[i]=0; | ~~~~~^~ main.cpp:9:13: note: destination object ‘up’ of size 44 9 | int up[11]; | ^~
ソースコード
#include<stdio.h> int main(){ int N=0,M=0; int i=0,j=0; int pup=0; int a[301]; int l[11]; int up[11]; int sp; scanf("%d",&N); M=N*3; for(i=0;i<=11;i++){ a[i]=0; up[i]=0; } for(i=0;i<M;i++){ scanf("%d",&a[i]); } for(i=1;i<=10;i++){ for(j=0;j<M;j++){ if(a[j]==i){ l[i]=l[i]+1; } } } for(i=0;i<=11;i++){ for(i=1;j<M;i++){ if(a[j]==i){ up[i]=up[i]+1; } } } for(i=1;i<=11;i++){ pup=pup+up[i]/2; sp=sp+up[i]%2; } pup=pup+sp/4; printf("%d",pup); return 0; }