結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | notetonous |
提出日時 | 2016-07-15 22:45:56 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 385 bytes |
コンパイル時間 | 842 ms |
コンパイル使用メモリ | 23,936 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 04:36:27 |
合計ジャッジ時間 | 953 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:19: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | for(i=0;i<6;i++)scanf("%d",&a[i]); | ^~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <math.h> int main(){ int a[6]; int i,j,tmp; double ans; int n=6; for(i=0;i<6;i++)scanf("%d",&a[i]); for(i=0;i<n-1;i++){ for(j=n-1;j>i;j--){ if(a[j-1]>a[j]){ tmp=a[j]; a[j]=a[j-1]; a[j-1]=tmp; } } } ans=(a[1]+a[2]+a[3]+a[4]); ans/=4; ans*=100; ans=floor(ans); ans/=100; printf("%.2f\n",ans); return 0; }