結果
| 問題 |
No.191 供託金
|
| コンテスト | |
| ユーザー |
tsukacchan
|
| 提出日時 | 2016-03-24 12:35:41 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 313 bytes |
| コンパイル時間 | 255 ms |
| コンパイル使用メモリ | 20,608 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-07 16:15:17 |
| 合計ジャッジ時間 | 1,387 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 RE * 1 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
10 | scanf("%d",&N);
| ^~~~~~~~~~~~~~
main.c:14:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
14 | scanf("%d",&c[i]);
| ^~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h>
int main(void){
int i,N;
int c[100];
int total=0;
int deposit_money=0;
scanf("%d",&N);
for(i=0;i<N;i++)
{
scanf("%d",&c[i]);
total += c[i];
}
for(i=0;i<N;i++)
if(((c[i]*1000)/total) <= 100) deposit_money += 30;
if(total==0)
printf("%d",N*30);
else
printf("%d",deposit_money);
return 0;
}
tsukacchan