結果
問題 | No.146 試験監督(1) |
ユーザー | focus |
提出日時 | 2018-02-21 22:35:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 279 bytes |
コンパイル時間 | 641 ms |
コンパイル使用メモリ | 72,056 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 19:55:18 |
合計ジャッジ時間 | 1,196 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<string> #include<cmath> #include<cstdio> using namespace std; int main(){ int N,sum=0,c,d; cin >> N; while(N--){ cin >> c >> d; sum += d*((c+1)/2); } cout << sum; return 0; }