結果

問題 No.9014 テストの合計点と平均点
ユーザー ロク@マジミラ2023(幕張)9/1~9/3参加ロク@マジミラ2023(幕張)9/1~9/3参加
提出日時 2023-08-03 00:58:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 1,627 ms
コンパイル使用メモリ 167,436 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 23:01:26
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int ctoi(char &c){
    switch(c){
        case '1': return 1;
        case '2': return 2;
        case '3': return 3;
        case '4': return 4;
        case '5': return 5;
        case '6': return 6;
        case '7': return 7;
        case '8': return 8;
        case '9': return 9;
        default: return 0;
    }
}

int main() {
    double j, m, b;
    cin >> j;
    cin.ignore();
    cin >> m;
    cin.ignore();
    cin >> b;

    double sum = j + m + b;
    double avg = (j + m + b) / 3;

    cout << "合計点:" << sum << endl;
    printf("平均点:%.1f", avg);
}
0