結果
| 問題 |
No.156 キャンディー・ボックス
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-05-06 20:13:43 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 12 ms / 2,000 ms |
| コード長 | 237 bytes |
| コンパイル時間 | 1,117 ms |
| コンパイル使用メモリ | 30,080 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-05 16:17:23 |
| 合計ジャッジ時間 | 1,245 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 30 |
コンパイルメッセージ
main.c:1:1: warning: return type defaults to 'int' [-Wimplicit-int]
1 | main(n,m,i,j,t){int c[10];scanf("%d%d",&n,&m);for(i=0;i<n;i++)scanf("%d",&c[i]);for(i=0;i<n-1;i++)for(j=n-1;j>i;j--)if(c[j-1]>c[j]){t=c[j-1];c[j-1]=c[j];c[j]=t;}for(i=0;m>0;i++)while(c[i]>0&&m>0){m--;c[i]--;}printf("%d",c[i-1]>0?i-1:i);}
| ^~~~
main.c: In function 'main':
main.c:1:1: warning: type of 'n' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'm' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'i' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'j' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 't' defaults to 'int' [-Wimplicit-int]
main.c:1:27: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
1 | main(n,m,i,j,t){int c[10];scanf("%d%d",&n,&m);for(i=0;i<n;i++)scanf("%d",&c[i]);for(i=0;i<n-1;i++)for(j=n-1;j>i;j--)if(c[j-1]>c[j]){t=c[j-1];c[j-1]=c[j];c[j]=t;}for(i=0;m>0;i++)while(c[i]>0&&m>0){m--;c[i]--;}printf("%d",c[i-1]>0?i-1:i);}
| ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
+++ |+#include <stdio.h>
1 | main(n,m,i,j,t){int c[10];scanf("%d%d",&n,&m);for(i=0;i<n;i++)scanf("%d",&c[i]);for(i=0;i<n-1;i++)for(j=n-1;j>i;j--)if(c[j-1]>c[j]){t=c[j-1];c[j-1]=c[j];c[j]=t;}for(i=0;m>0;i++)while(c[i]>0&&m>0){m--;c[i]--;}printf("%d",c[i-1]>0?i-1:i);}
main.c:1:27: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
1 | main(n,m,i,j,t){int c[10];scanf("%d%d",&n,&m);for(i=0;i<n;i++)scanf("%d",&c[i]);for(i=0;i<n-1;i++)for(j=n-1;j>i;j--)if(c[j-1]>c[j]){t=c[j-1];c[j-1]=c[j];c[j]=t;}for(i=0;m>0;i++)while(c[i]>0&&m>0){m--;c[i]--;}printf("%d",c[i-1]>0?i-1:i);}
| ^~~~~
main.c:1:27: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:1:209: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaratio
ソースコード
main(n,m,i,j,t){int c[10];scanf("%d%d",&n,&m);for(i=0;i<n;i++)scanf("%d",&c[i]);for(i=0;i<n-1;i++)for(j=n-1;j>i;j--)if(c[j-1]>c[j]){t=c[j-1];c[j-1]=c[j];c[j]=t;}for(i=0;m>0;i++)while(c[i]>0&&m>0){m--;c[i]--;}printf("%d",c[i-1]>0?i-1:i);}