結果

問題 No.710 チーム戦
ユーザー amtgjw
提出日時 2018-07-11 09:50:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 83,732 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 12:10:11
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 2 WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <vector>
#include <algorithm>
#include <numeric>
#include <map>
#include <math.h>
#include<iomanip>

using namespace std;

#define REP(i,n)	for(int i=0;i<(n);++i)
#define REPS(i,s,t)	for(int i=(s);i<(t);++i)

#define INF 		2000000007
#define MOD			998244353

#define MAX 		100005

typedef unsigned int 			uint;
typedef unsigned long long int	ull;
typedef long long int ll;


int main(){
	int n;cin>>n;

	int ans = 0;
	REP(i,n){
		int a,b;
		cin>>a>>b;
		ans += min(a,b);
	}
	cout << ans << endl;

	return 0;
}
0