結果
問題 | No.9014 テストの合計点と平均点 |
ユーザー | terayumi |
提出日時 | 2021-05-28 17:53:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 174 bytes |
コンパイル時間 | 2,432 ms |
コンパイル使用メモリ | 164,548 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 06:11:07 |
合計ジャッジ時間 | 2,237 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#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); }