結果

問題 No.146 試験監督(1)
ユーザー focusfocus
提出日時 2018-02-22 11:57:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 71,772 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 22:15:56
合計ジャッジ時間 1,710 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<cmath>
#include<cstdio>
using namespace std;
int main(){
    long long int N,sum=0,c,d,e;
    cin >> N;
    while(N--){
        cin >> c >> d;
        e = (c+1)/2;
        sum += d*e;
    }
    cout << sum;
    return 0;
}
0