結果

問題 No.9014 テストの合計点と平均点
ユーザー terayumiterayumi
提出日時 2021-05-28 17:53:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 1,717 ms
コンパイル使用メモリ 161,156 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 21:07:10
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    double a,b,c; cin>>a>>b>>c;
    cout<<"合計点:"<<a+b+c<<endl<<"平均点:";
    printf("%.1lf",(a+b+c)/3);
}
0