結果

問題 No.9014 テストの合計点と平均点
ユーザー sonotarousonotarou
提出日時 2021-02-19 00:15:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 481 bytes
コンパイル時間 1,733 ms
コンパイル使用メモリ 165,580 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 05:07:15
合計ジャッジ時間 2,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
template<class T> inline bool chmax(T&a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T> inline bool chmin(T&a,T b){if(a>b){a=b;return 1;}return 0;}
using ll = long long;

int j,m,b;

int main () {
  cin.tie(0); ios::sync_with_stdio(false); 

  cin >> j >> m >> b;
  cout << "合計点:" << j+m+b << endl;
  cout << fixed << setprecision(1) << "平均点:" << (j+m+b)/3.0 << endl;
} 
0